File tree 1 file changed +6
-8
lines changed
1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -53,12 +53,10 @@ jobs:
53
53
# with:
54
54
# p12-file-base64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }}
55
55
# p12-password: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }}
56
- # -
57
- # name: Install gon via HomeBrew for code signing and app notarization
58
- # run: |
59
- # brew tap mitchellh/gon
60
- # brew install mitchellh/gon/gon
61
- # brew install coreutils
56
+ -
57
+ name : Install coreutils
58
+ run : |
59
+ brew install coreutils
62
60
-
63
61
name : Run GoReleaser
64
62
uses : goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
@@ -146,7 +144,7 @@ jobs:
146
144
#!/bin/bash
147
145
shopt -s expand_aliases
148
146
cd .dist
149
- sha256 *.tar.gz > checksums.txt
147
+ sha256sum *.tar.gz > checksums.txt
150
148
FILES="*"
151
149
for f in $FILES;
152
150
do
@@ -155,7 +153,7 @@ jobs:
155
153
cosign sign-blob --key <(echo -n "${COSIGN_KEY}") "$f" > "$f.sig"
156
154
;;
157
155
*.tar.gz)
158
- sha256 "$f" | cut -d " " -f 4 > "$f.sha256"
156
+ sha256sum "$f" | cut -d " " -f 1 > "$f.sha256"
159
157
cosign sign-blob --key <(echo -n "${COSIGN_KEY}") "$f" > "$f.sig"
160
158
;;
161
159
esac
You can’t perform that action at this time.
0 commit comments