mirror of
https://github.com/fiatjaf/nak.git
synced 2024-11-22 16:19:07 -05:00
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
name: build cli for all platforms
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
make-release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/create-release@latest
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ github.ref }}
|
|
release_name: ${{ github.ref }}
|
|
build-all-for-all:
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- make-release
|
|
strategy:
|
|
matrix:
|
|
goos: [linux, freebsd, darwin, windows]
|
|
goarch: [arm, amd64, arm64, riscv64]
|
|
exclude:
|
|
- goarch: arm64
|
|
goos: windows
|
|
- goarch: riscv64
|
|
goos: windows
|
|
- goarch: riscv64
|
|
goos: darwin
|
|
- goarch: arm
|
|
goos: windows
|
|
- goarch: arm
|
|
goos: darwin
|
|
- goarch: arm
|
|
goos: freebsd
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: wangyoucao577/go-release-action@v1.40
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
goos: ${{ matrix.goos }}
|
|
goarch: ${{ matrix.goarch }}
|
|
ldflags: -X main.version=${{ github.ref_name }}
|
|
overwrite: true
|
|
md5sum: false
|
|
sha256sum: false
|
|
compress_assets: false
|