Skip to content

Commit feaf411

Browse files
committed
Rename script
1 parent 0a98809 commit feaf411

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

clients/cli/.github/workflows/release.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
tags:
66
- '*'
77

8+
permissions:
9+
contents: write
10+
811
jobs:
912
release:
1013
runs-on: ubuntu-latest
@@ -58,7 +61,7 @@ jobs:
5861
name: dist
5962
path: dist
6063
- name: Sign CLI binaries
61-
run: bash ./build/sign.sh
64+
run: bash ./build/sign_and_notarize.sh
6265
env:
6366
SIGNING_CERTIFICATE: ${{ secrets.SIGNING_CERTIFICATE }}
6467
CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }}
@@ -78,7 +81,11 @@ jobs:
7881
env:
7982
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8083
- name: Publish GitHub Release
81-
run: gh release edit ${{ github.ref_name }} --draft=false
84+
uses: softprops/action-gh-release@v1
85+
with:
86+
draft: false
87+
name: ${{ github.ref_name }}
88+
tag_name: ${{ github.ref_name }}
8289
env:
8390
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8491
brew:

0 commit comments

Comments
 (0)