Skip to content

Commit f52666c

Browse files
committed
fix(ci): fix macos signing
1 parent ee4a112 commit f52666c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.22
25+
go-version: 1.24
2626
- name: Build for Linux
2727
run: ./scripts/build.sh
2828
- name: Release for Linux
@@ -45,7 +45,7 @@ jobs:
4545
- name: Set up Go
4646
uses: actions/setup-go@v5
4747
with:
48-
go-version: 1.22
48+
go-version: 1.24
4949
- name: Build for macOS
5050
run: ./scripts/build.sh
5151
- name: Setting up Apple certificate
@@ -55,13 +55,13 @@ jobs:
5555
- name: Sign a amd64 macOS binary
5656
uses: indygreg/apple-code-sign-action@v1
5757
with:
58-
input_path: dist/zana-darwin-amd64
58+
input_path: dist/kuba-darwin-amd64
5959
p12_file: apple-cert.p12
6060
p12_password: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
6161
- name: Sign a arm64 macOS binary
6262
uses: indygreg/apple-code-sign-action@v1
6363
with:
64-
input_path: dist/zana-darwin-arm64
64+
input_path: dist/kuba-darwin-arm64
6565
p12_file: apple-cert.p12
6666
p12_password: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
6767
- name: Release for macOS
@@ -84,7 +84,7 @@ jobs:
8484
- name: Set up Go
8585
uses: actions/setup-go@v5
8686
with:
87-
go-version: 1.22
87+
go-version: 1.24
8888
- name: Build for Windows
8989
run: ./scripts/build.sh
9090
- name: Release for Windows

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
BIN_NAME=zana
1+
BIN_NAME=kuba
22

33
build:
44
./scripts/build.sh

0 commit comments

Comments
 (0)