Add arm64(aarch) #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.18' | |
- name: Cross building | |
run: | | |
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o .build/http2tcp-linux-amd64 | |
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o .build/http2tcp-linux-arm64 | |
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o .build/http2tcp-darwin-amd64 | |
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o .build/http2tcp-darwin-arm64 | |
- name: Generate body | |
run: | | |
echo '**Build At**: | |
* `'"$(date)"'` | |
* `'"$(TZ=Asia/Shanghai date)"'` | |
**sha256sum**: | |
```- | |
'"$(cd .build && sha256sum *)"' | |
``` | |
' > body.md | |
- name: Create Release | |
uses: ncipollo/release-action@v1.11.2 | |
with: | |
name: main | |
allowUpdates: true | |
artifactErrorsFailBuild: true | |
replacesArtifacts: true | |
artifacts: .build/* | |
commit: main | |
tag: release-main-latest | |
bodyFile: body.md |