Skip to content

Commit 8754273

Browse files
authored
fix: update artifact names for github release workflow (#368)
Signed-off-by: Ben Stickel <[email protected]>
1 parent b748242 commit 8754273

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/releaser.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -81,41 +81,41 @@ jobs:
8181
AC_PASSWORD: "${{ secrets.AC_PASSWORD }}"
8282
run: |
8383
echo '{
84-
"source": ["./dist/harp-darwin-amd64"],
84+
"source": ["./dist/harp-darwin-amd64-v1"],
8585
"bundle_id":"co.elastic.harp",
8686
"apple_id": {},
8787
"sign": { "application_identity": "9470D0A7B70090A8EF31C3B33AB3868B38B27A3D" },
8888
"zip": {
89-
"output_path": "./dist/harp-darwin-amd64.zip"
89+
"output_path": "./dist/harp-darwin-amd64-v1.zip"
9090
}
9191
}' | jq . > gon.amd64.json
9292
gon -log-level=debug -log-json ./gon.amd64.json
93-
rm -f .dist/harp-darwin-amd64
93+
rm -f .dist/harp-darwin-amd64-v1
9494
-
9595
name: Sign and notarize MacOS ARM64 cli
9696
env:
9797
AC_USERNAME: "${{ secrets.AC_USERNAME }}"
9898
AC_PASSWORD: "${{ secrets.AC_PASSWORD }}"
9999
run: |
100100
echo '{
101-
"source": ["./dist/harp-darwin-arm64"],
101+
"source": ["./dist/harp-darwin-arm64-v8.0"],
102102
"bundle_id":"co.elastic.harp",
103103
"apple_id": {},
104104
"sign": { "application_identity": "9470D0A7B70090A8EF31C3B33AB3868B38B27A3D" },
105105
"zip": {
106-
"output_path": "./dist/harp-darwin-arm64.zip"
106+
"output_path": "./dist/harp-darwin-arm64-v8.0.zip"
107107
}
108108
}' | jq . > gon.arm64.json
109109
gon -log-level=debug -log-json ./gon.arm64.json
110-
rm -f .dist/harp-darwin-arm64
110+
rm -f .dist/harp-darwin-arm64-v8.0
111111
-
112112
name: Prepare archives
113113
run: |
114114
#!/bin/bash
115115
shopt -s expand_aliases
116116
cd .dist/
117-
unzip ../dist/harp-darwin-amd64.zip
118-
unzip ../dist/harp-darwin-arm64.zip
117+
unzip ../dist/harp-darwin-amd64-v1.zip
118+
unzip ../dist/harp-darwin-arm64-v8.0.zip
119119
FILES="*"
120120
for f in $FILES;
121121
do

0 commit comments

Comments
 (0)