Skip to content

Commit

Permalink
fix: update goarcrh
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Jun 11, 2024
1 parent 0a8adb6 commit 058dd95
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/on-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,26 @@ on:
push:
tags:
- '*'
workflow_dispatch:
inputs:
tag:
description: 'Tag to release'
required: true
default: 'v0.0.0'

permissions:
contents: write

jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
goarch: [ 386, amd64, arm, arm64 ]
include:
- os: ubuntu-latest
goos: linux
goarch: [ 386, amd64, arm, arm64 ]
- os: macos-latest
goos: darwin
goarch: amd64
goarch: [amd64] # Only build for amd64 on macOS
- os: windows-latest
goos: windows
goarch: [ 386, amd64, arm, arm64 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down

0 comments on commit 058dd95

Please sign in to comment.