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 204165d commit 65afc07Copy full SHA for 65afc07
.github/workflows/build-win.yml
@@ -148,13 +148,13 @@ jobs:
148
wait-for-completion: true
149
output-artifact-directory: ${{ env.SIGNED_OUT_DIR }}
150
151
- # Optional: grab version from package.json for a nice tag
152
- - name: Read app version
+ - name: Read app version #FIXME!
153
id: appver
154
- shell: bash
155
- run: echo "version=$(node -p \"require('./package.json').version\")" >> $GITHUB_OUTPUT
156
-
157
- # Create/Update a GitHub release and upload the SIGNED files
+ shell: pwsh
+ run: |
+ $ver = (Get-Content package.json -Raw | ConvertFrom-Json).version
+ "version=$ver" >> $env:GITHUB_OUTPUT
+
158
- name: Publish signed artifacts to GitHub Release
159
uses: softprops/action-gh-release@v2
160
with:
0 commit comments