We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f86efe8 commit faeb6acCopy full SHA for faeb6ac
.github/workflows/create-release.yml
@@ -73,12 +73,11 @@ jobs:
73
id: installer
74
if: contains(matrix.architecture, 'win-')
75
run: |
76
- if contains(github.ref_name, 'beta')
77
- then
78
- echo "::set-output name=filename::install-beta.iss"
79
- else
80
- echo "::set-output name=filename::install.iss"
81
- fi
+ if ('${{ github.ref_name }}'.Contains('beta')) {
+ Write-Output "filename=install-beta.iss" >> $env:GITHUB_OUTPUT
+ } else {
+ Write-Output "filename=install.iss" >> $env:GITHUB_OUTPUT
+ }
82
- name: Add install file
83
84
run: cp ./${{ steps.installer.outputs.filename }} ./${{ env.release }}
0 commit comments