We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 73d4a9c + 3131341 commit 040d36dCopy full SHA for 040d36d
.github/workflows/build.yml
@@ -5,6 +5,10 @@ name: Build Release
5
6
on : [push, pull_request]
7
8
+env:
9
+ ## set env
10
+ git_sha: ${{github.sha}}
11
+
12
jobs:
13
build:
14
runs-on: ubuntu-latest
@@ -45,6 +49,6 @@ jobs:
45
49
- name: Upload binaries to release
46
50
uses: actions/upload-artifact@v4
47
51
with:
48
- name: wild_wind-${{steps.version.outputs.value}}.jar
52
+ name: wild_wind-${{steps.version.outputs.value}}-${{github.sha}}.jar
53
path: build/libs/wild_wind-${{steps.version.outputs.value}}.jar
- repo-token: ${{ secrets.ACTION_TOKEN }}
54
+ repo-token: ${{ secrets.ACTION_TOKEN }}
0 commit comments