mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2025-01-31 14:37:24 +00:00
Beta tags should have commit SHA
This commit is contained in:
parent
f01be3430e
commit
b6bb888d82
1 changed files with 4 additions and 1 deletions
5
.github/workflows/rust.yml
vendored
5
.github/workflows/rust.yml
vendored
|
@ -54,6 +54,9 @@ jobs:
|
||||||
mkdir -p ${{env.TESLA_OVERLAY_DIR}}
|
mkdir -p ${{env.TESLA_OVERLAY_DIR}}
|
||||||
cp overlay/ovlTrainingModpack.ovl ${{env.TESLA_OVERLAY_DIR}}/ovlTrainingModpack.ovl
|
cp overlay/ovlTrainingModpack.ovl ${{env.TESLA_OVERLAY_DIR}}/ovlTrainingModpack.ovl
|
||||||
zip -r training_modpack_beta.zip atmosphere switch
|
zip -r training_modpack_beta.zip atmosphere switch
|
||||||
|
- name: Get short commit SHA
|
||||||
|
id: commit-sha
|
||||||
|
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
|
||||||
- name: Update Release
|
- name: Update Release
|
||||||
uses: meeDamian/github-release@2.0
|
uses: meeDamian/github-release@2.0
|
||||||
with:
|
with:
|
||||||
|
@ -61,7 +64,7 @@ jobs:
|
||||||
prerelease: true
|
prerelease: true
|
||||||
allow_override: true
|
allow_override: true
|
||||||
gzip: false
|
gzip: false
|
||||||
tag: beta
|
tag: beta-${{ steps.commit-sha.outputs.sha_short }}
|
||||||
name: beta
|
name: beta
|
||||||
body: >
|
body: >
|
||||||
Beta built off of the latest code in the repository.
|
Beta built off of the latest code in the repository.
|
||||||
|
|
Loading…
Reference in a new issue