Skip to content

Commit 763938e

Browse files
Fix actions when tagging (#28061)
close #28053 --------- Co-authored-by: techknowlogick <[email protected]>
1 parent 882e502 commit 763938e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/release-tag-rc.yml

+4
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ jobs:
5656
- name: upload binaries to s3
5757
run: |
5858
aws s3 sync dist/release s3://${{ secrets.AWS_S3_BUCKET }}/gitea/${{ steps.clean_name.outputs.branch }} --no-progress
59+
- name: Install GH CLI
60+
uses: dev-hanz-ops/[email protected]
61+
with:
62+
gh-cli-version: 2.39.1
5963
- name: create github release
6064
run: |
6165
gh release create ${{ github.ref_name }} --title ${{ github.ref_name }} --draft --notes-from-tag dist/release/*

.github/workflows/release-tag-version.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,13 @@ jobs:
5858
- name: upload binaries to s3
5959
run: |
6060
aws s3 sync dist/release s3://${{ secrets.AWS_S3_BUCKET }}/gitea/${{ steps.clean_name.outputs.branch }} --no-progress
61+
- name: Install GH CLI
62+
uses: dev-hanz-ops/[email protected]
63+
with:
64+
gh-cli-version: 2.39.1
6165
- name: create github release
6266
run: |
63-
gh release create ${{ github.ref_name }} --title ${{ github.ref_name }} --draft --notes-from-tag dist/release/*
67+
gh release create ${{ github.ref_name }} --title ${{ github.ref_name }} --notes-from-tag dist/release/*
6468
env:
6569
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
6670
docker-rootful:

0 commit comments

Comments
 (0)