Skip to content

Commit

Permalink
Trying signing without DMG creation or notarization
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanratcliffe committed Feb 28, 2024
1 parent 2e2083d commit 169a87f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# if: ${{ github.event_name == 'pull_request' }}
with:
version: latest
args: release --clean --snapshot --skip-publish
args: release --clean --snapshot --skip=publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AC_PASSWORD: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }}
Expand Down
39 changes: 17 additions & 22 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ builds:
goos:
- darwin

# signs:
# - id: amd64
# signature: "${artifact}.dmg"
# ids:
# - overmind-macos # here we filter the macos only build id
# cmd: gon
# args:
# - gon-amd64.json
# artifacts: all
# - id: arm64
# signature: "${artifact}.dmg"
# ids:
# - overmind-macos # here we filter the macos only build id
# cmd: gon
# args:
# - gon-arm64.json
# artifacts: all
signs:
- id: amd64
signature: "${artifact}"
ids:
- overmind-macos # here we filter the macos only build id
cmd: gon
args:
- gon-amd64.json
artifacts: all
- id: arm64
signature: "${artifact}"
ids:
- overmind-macos # here we filter the macos only build id
cmd: gon
args:
- gon-arm64.json
artifacts: all

archives:
- format: tar.gz
Expand Down Expand Up @@ -72,11 +72,6 @@ changelog:
- "^docs:"
- "^test:"

release:
extra_files:
- glob: ./dist/overmind-cli-*.dmg
- glob: ./dist/overmind-cli-*.zip

# https://goreleaser.com/customization/homebrew/
brews:
- name: cli
Expand Down
7 changes: 0 additions & 7 deletions gon-amd64.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,5 @@
},
"sign": {
"application_identity": "CE61C10EED69BFB4B25EB349AD15B29D75A809B9"
},
"dmg": {
"output_path": "dist/overmind-cli-amd64.dmg",
"volume_name": "Overmind CLI"
},
"zip": {
"output_path": "dist/overmind-cli-amd64.zip"
}
}
7 changes: 0 additions & 7 deletions gon-arm64.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,5 @@
},
"sign": {
"application_identity": "CE61C10EED69BFB4B25EB349AD15B29D75A809B9"
},
"dmg": {
"output_path": "dist/overmind-cli-arm64.dmg",
"volume_name": "Overmind CLI"
},
"zip": {
"output_path": "dist/overmind-cli-arm64.zip"
}
}

0 comments on commit 169a87f

Please sign in to comment.