Skip to content

Commit

Permalink
fix paths in zipfile for signed mac binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
bdon committed Oct 18, 2023
1 parent e2b7c3b commit 24bc00f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ builds:
post:
- cmd: 'codesign -s "Developer ID Application: Brandon Liu (WNSC27EEHU)" -v {{ .Path }} --options=runtime'
output: true
- cmd: zip "{{ .Path }}_signed.zip" {{ .Path }}
- cmd: zip -j "{{ .Path }}_signed.zip" {{ .Path }}
- cmd: xcrun notarytool submit "{{ .Path }}_signed.zip" --apple-id {{ .Env.AC_USERNAME }} --password {{ .Env.AC_PASSWORD }} --team-id WNSC27EEHU --wait
- mv {{ .Path }}_signed.zip dist/go-pmtiles-{{ .Version }}_Darwin_x86_64.zip
- binary: pmtiles
Expand All @@ -46,7 +46,7 @@ builds:
post:
- cmd: 'codesign -s "Developer ID Application: Brandon Liu (WNSC27EEHU)" -v {{ .Path }} --options=runtime'
output: true
- cmd: zip "{{ .Path }}_signed.zip" {{ .Path }}
- cmd: zip -j "{{ .Path }}_signed.zip" {{ .Path }}
- cmd: xcrun notarytool submit "{{ .Path }}_signed.zip" --apple-id {{ .Env.AC_USERNAME }} --password {{ .Env.AC_PASSWORD }} --team-id WNSC27EEHU --wait
- mv {{ .Path }}_signed.zip dist/go-pmtiles-{{ .Version }}_Darwin_arm64.zip
archives:
Expand Down

0 comments on commit 24bc00f

Please sign in to comment.