Skip to content

Skip running on the mac #251

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
# Actually release the binaries including signing them
release:
runs-on: apple-certs
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
permissions:
contents: write
Expand All @@ -19,10 +19,10 @@ jobs:
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: 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
Expand All @@ -35,15 +35,14 @@ jobs:
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
args: release --clean --skip sign
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AC_PASSWORD: ${{ secrets.APPLE_AC_PASSWORD }}

bump-formula:
# Depend on the release job
needs: release
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
steps:
- name: Update Homebrew formula
uses: dawidd6/action-homebrew-bump-formula@v3
Expand Down