We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85c698f commit 23efa83Copy full SHA for 23efa83
.github/workflows/demo.workflow.yml
@@ -29,11 +29,11 @@ jobs:
29
30
- name: Set version (Release)
31
if: startsWith(github.ref, 'refs/tags/v') == true
32
- run: echo '#define MyAppVersion "${{ steps.tag.outputs.version-without-v }}"' > version.txt
+ run: echo '#define MyAppVersion "${{ steps.tag.outputs.version-without-v }}"' > launcher/windows/version.txt
33
34
- name: Set version
35
if: startsWith(github.ref, 'refs/tags/v') != true
36
- run: echo '#define MyAppVersion "1.0-${{ github.sha }}"' > version.txt
+ run: echo '#define MyAppVersion "1.0-${{ github.sha }}"' > launcher/windows/version.txt
37
38
- name: Build Windows Installer
39
run: .\launcher\windows\build.ps1
0 commit comments