Skip to content

Commit bf5c177

Browse files
committed
fix: add a step to publish the release
1 parent 1afef00 commit bf5c177

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,11 @@ jobs:
130130
gh release view ${{ github.ref_name }} --json assets
131131
env:
132132
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
133+
134+
- name: Publish release
135+
shell: bash
136+
run: |
137+
echo "Publishing release ${{ github.ref_name }}..."
138+
gh release edit ${{ github.ref_name }} --draft=false --latest
139+
env:
140+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)