29 lines
807 B
YAML
29 lines
807 B
YAML
|
name: Build and publish arm binaries (releases only)
|
||
|
on:
|
||
|
release:
|
||
|
types: [created]
|
||
|
|
||
|
jobs:
|
||
|
releases-matrix:
|
||
|
name: Release Go Binary
|
||
|
runs-on: ubuntu-latest
|
||
|
env:
|
||
|
CGO_ENABLED: 1
|
||
|
strategy:
|
||
|
matrix:
|
||
|
goos: [linux]
|
||
|
goarch: ["arm", "arm64"]
|
||
|
steps:
|
||
|
- name: checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
- name: build binaries
|
||
|
uses: wangyoucao577/go-release-action@v1.20
|
||
|
with:
|
||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
goos: ${{ matrix.goos }}
|
||
|
goarch: ${{ matrix.goarch }}
|
||
|
build_command: bash ./build_arm.sh
|
||
|
pre_command: bash ./install-deps_arm.sh
|
||
|
binary_name: "openvpn-user-${{ matrix.goarch }}"
|
||
|
asset_name: openvpn-user-${{ matrix.goos }}-${{ matrix.goarch }}.
|