Skip to content

Commit 95f77e1

Browse files
committed
ci: update release workflow to use version output from 'pack' job for tagging and naming releases
1 parent 58d6830 commit 95f77e1

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,7 @@ jobs:
515515
- build-linux-packages
516516
- build-linux-packages-arm64
517517
- build-extra-packages
518+
- pack
518519
steps:
519520
- uses: actions/checkout@v3
520521
with:
@@ -531,8 +532,8 @@ jobs:
531532
env:
532533
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
533534
with:
534-
tag_name: ${{ github.ref }}
535-
release_name: ${{ github.ref }}
535+
tag_name: ${{ needs.pack.outputs.version }}
536+
release_name: ${{ needs.pack.outputs.version }}
536537
body_path: ./CHANGELOG.md
537538
draft: false
538539
prerelease: true

0 commit comments

Comments
 (0)