Skip to content

Commit

Permalink
chore: update nightly release
Browse files Browse the repository at this point in the history
  • Loading branch information
nange committed Feb 2, 2024
1 parent 2a03118 commit 690b5da
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,15 @@ jobs:
zip easyss-with-notray-linux-arm64.zip ./easyss-with-notray
zip easyss-server-linux-arm64.zip ./easyss-server
- name: Set outputs
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Nightly Release
uses: softprops/action-gh-release@v1
with:
name: Nightly-${{ github.sha::7 }}
tag_name: nightly-${{ github.sha::7 }}
name: Nightly-${{ steps.vars.outputs.sha_short }}
tag_name: nightly-${{ steps.vars.outputs.sha_short }}
prerelease: true
body: For testing and development only
files: bin/*.zip
Expand Down Expand Up @@ -102,11 +106,15 @@ jobs:
zip easyss-with-notray-darwin-arm64.zip ./easyss-with-notray
zip easyss-server-darwin-arm64.zip ./easyss-server
- name: Set outputs
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Nightly Release
uses: softprops/action-gh-release@v1
with:
name: Nightly-${{ github.sha::7 }}
tag_name: nightly-${{ github.sha::7 }}
name: Nightly-${{ steps.vars.outputs.sha_short }}
tag_name: nightly-${{ steps.vars.outputs.sha_short }}
prerelease: true
body: For testing and development only
files: bin/*.zip

0 comments on commit 690b5da

Please sign in to comment.