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 00962b5 commit 74a5148Copy full SHA for 74a5148
.github/workflows/test.yml
@@ -61,10 +61,17 @@ jobs:
61
USE_HARD_LINKS: false
62
# DEBUG: electron-builder
63
64
+ - name: Gen version
65
+ run: |
66
+ VERSION=$(node -p "require('./release/app/package.json').version")
67
+ SHORT_HASH=$(git rev-parse --short HEAD)
68
+ echo "VERSION=$VERSION" >> $GITHUB_ENV
69
+ echo "HASH=$SHORT_HASH" >> $GITHUB_ENV
70
+
71
- name: Upload build artifact
72
uses: actions/upload-artifact@v4
73
with:
- name: electron-build-${{ runner.os }}
74
+ name: Fishing-Funds-${{ env.VERSION }}-${{ runner.os }}-${{ env.HASH }}
75
path: |
76
release/build/*.dmg
77
release/build/*.exe
0 commit comments