File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 36
36
}
37
37
}
38
38
$urls = "https://github.com/$repo/releases/download/$tag/$msi_x64, https://github.com/$repo/releases/download/$tag/$msi_x86"
39
- echo "PACKAGE_URLS=$urls" >> $ GITHUB_ENV
39
+ echo "PACKAGE_URLS=$urls" | Out-File -FilePath $Env: GITHUB_ENV -Encoding utf-8 -Append
40
40
name: Get Release URLs
41
41
42
42
- run : |
51
51
name: Download WinGet Requirements
52
52
53
53
- run : |
54
- echo "wingetcreate update Microsoft.OpenSSH -u ${{ env. PACKAGE_URLS }} -o ${{ env. GITHUB_WORKSPACE }} "
55
- wingetcreate update Microsoft.OpenSSH -u ${{ env. PACKAGE_URLS }} -o ${{ env. GITHUB_WORKSPACE }}
56
- # wingetcreate update Microsoft.OpenSSH -u ${ PACKAGE_URLS} -t ${{ secrets.GITHUB_TOKEN }} --submit
54
+ echo "wingetcreate update Microsoft.OpenSSH -u $env: PACKAGE_URLS -o $env: GITHUB_WORKSPACE"
55
+ wingetcreate update Microsoft.OpenSSH -u $env: PACKAGE_URLS -o $env: GITHUB_WORKSPACE
56
+ # wingetcreate update Microsoft.OpenSSH -u $env: PACKAGE_URLS -t ${{ secrets.GITHUB_TOKEN }} --submit
57
57
name: WinGet Update
You can’t perform that action at this time.
0 commit comments