Skip to content

Commit

Permalink
ci: crossbuild on Github Actions instead of CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
damoun committed Jun 27, 2024
1 parent bc8a00e commit 66a781c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Release
on:
push:
branches:
- main
- use-gha

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v5
with:
go-version: '^1.22.2'
- run: make promu
- run: promu crossbuild -v
- name: Store binaries artifacts
uses: actions/upload-artifact@v4
with:
name: build
path: .build

0 comments on commit 66a781c

Please sign in to comment.