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 70356a2 commit d54658bCopy full SHA for d54658b
.github/workflows/release.yaml
@@ -147,10 +147,11 @@ jobs:
147
dest: ${{ env.GAME_EXECUTABLE_NAME }}_windows.zip
148
- name: Create Installer
149
if: ${{ env.BUILD_INSTALLER }}
150
+ shell: bash
151
run: |
- tag="v0.1.0-test.42"
152
- echo "VERSION=${tag#v}" >> $WIX_VERSION
153
- dotnet build -p:Version=$WIX_VERSION -c Release build/windows/installer/Installer.wixproj --output installer
+ tag=${{ env.VERSION }
+ version="${tag#v}"
154
+ dotnet build -p:Version=$version -c Release build/windows/installer/Installer.wixproj --output installer
155
- name: Upload release
156
uses: svenstaro/upload-release-action@v2
157
with:
0 commit comments