mirror of
https://codeberg.org/moonleay/Gimbal.git
synced 2025-04-04 11:44:13 +02:00
ci: updated release ci
Signed-off-by: moonleay <contact@moonleay.net>
This commit is contained in:
parent
422dd27105
commit
6ad6ea41c6
1 changed files with 6 additions and 2 deletions
|
@ -17,12 +17,16 @@ jobs:
|
|||
id: vars
|
||||
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Get latest git tag
|
||||
id: gitvar
|
||||
run: echo "tag=$(git describe --tags $(git rev-list --tags --max-count=1))" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Set git tag description
|
||||
id: vars2
|
||||
run: echo "tag_desc=$(git for-each-ref --format='%(contents)' $GITHUB_REF)" >> $GITHUB_OUTPUT
|
||||
run: echo "tag_desc=$(git for-each-ref --format='%(contents)' ${{ steps.gitvar.outputs.tag }})" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Check outputs
|
||||
run: echo "short ${{ steps.vars.outputs.sha_short }}, ref $GITHUB_REF, tag ${{ steps.vars2.outputs.tag_desc }}"
|
||||
run: echo "short ${{ steps.vars.outputs.sha_short }}, ref $GITHUB_REF, tag ${{ steps.gitvar.outputs.tag }}, tag_desc ${{ steps.vars2.outputs.tag_desc }}"
|
||||
|
||||
- name: Tag description
|
||||
run: git for-each-ref --format='%(contents)' $GITHUB_REF
|
||||
|
|
Loading…
Add table
Reference in a new issue