Skip to content
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

feat: GitHub action to build and upload Go artifacts after release created #22

Merged
merged 1 commit into from
Aug 16, 2023
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
32 changes: 32 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Go release artifacts

on:
release:
types:
- created

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write # release changes require contents write
strategy:
matrix:
goos: [darwin, linux, windows]
goarch: [amd64, arm64]

steps:
- name: Set up Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: 1.21

- name: Check out code
uses: actions/checkout@v3

- name: Build and upload Go binaries
env:
GH_TOKEN: ${{ github.token }}
run: |
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o build/pizza-${{ matrix.goos }}-${{ matrix.goarch }}
gh release upload ${{ github.event.release.tag_name }} build/pizza-${{ matrix.goos }}-${{ matrix.goarch }}