Skip to content

Commit

Permalink
ci: application binaries creation under releases-matrix ci job
Browse files Browse the repository at this point in the history
  • Loading branch information
magarrettsantos committed Jan 30, 2025
1 parent 5558f71 commit 47f7b68
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -453,3 +453,30 @@ jobs:
files: |
cartesi-*
rollupsdb-*
releases-matrix:
name: Build binaries for release
runs-on: ubuntu-latest
needs: [release]
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: [amd64, arm64, riscv64]
exclude:
- goarch: arm64
goos: windows
- goarch: riscv64
goos: windows
- goarch: riscv64
goos: darwin
steps:
- uses: actions/checkout@v4

- uses: wangyoucao577/go-release-action@v1
with:
overwrite: true
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
extra_files: CHANGELOG.md LICENSE README.md
binary_name: cartesi-rollups-espresso-reader

0 comments on commit 47f7b68

Please sign in to comment.