goreleaser-release #356
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: goreleaser-release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
# Actually release the binaries including signing them | |
release: | |
runs-on: apple-certs | |
if: ${{ github.event_name != 'pull_request' }} | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Gon from fork | |
run: | | |
curl -o gon -L https://github.com/dylanratcliffe/gon/releases/download/apple-silicon-fix/gon | |
chmod +x gon | |
- name: Go Init | |
uses: ./.github/actions/go_init | |
with: | |
cache: false | |
- run: go run main.go --version | |
- name: Run GoReleaser (publish) | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
AC_PASSWORD: ${{ secrets.APPLE_AC_PASSWORD }} | |
# Run build/extract-bin-from-dmg.sh to extract the binary from the DMG | |
- name: Extract binaries from DMG | |
run: | | |
./build/extract-bin-from-dmg.sh overmind-cli-amd64 | |
./build/extract-bin-from-dmg.sh overmind-cli-arm64 | |
# Add the raw signed binaries to the existing release | |
- name: Upload raw signed Mac binaries (amd64 and arm64) | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: dist/signed-binaries/* | |
file_glob: true |