Skip to content

ignition: update to version 8.1.47 #81

ignition: update to version 8.1.47

ignition: update to version 8.1.47 #81

Workflow file for this run

on:
pull_request:
name: Pull Requests
jobs:
pullRequestHandler:
name: PullRequestHandler
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Create scoop config file
shell: pwsh
run: |
$configPath = Join-Path $env:USERPROFILE ".config\scoop"
$configFile = Join-Path $configPath "config.json"
$null = New-Item -ItemType Directory -Path $configPath -Force
@{
private_hosts = @(@{
match = "https://files.inductiveautomation.com/*"
headers = "Referer=https://inductiveautomation.com/"
})
last_update = (Get-Date -Format "o")
scoop_branch = "master"
scoop_repo = "https://github.com/ScoopInstaller/Scoop"
} | ConvertTo-Json -Depth 10 | Set-Content -Path $configFile
Get-Content $configFile
- name: PullRequestHandler
uses: ScoopInstaller/GithubActions@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}