mirror of https://gitlab.com/fscarmen/test.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
name: Build Wireguard-go
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
binaries:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
# build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
|
|
goos: [linux]
|
|
goarch: [amd64, arm64]
|
|
exclude:
|
|
- goarch: "386"
|
|
goos: darwin
|
|
- goarch: arm64
|
|
goos: windows
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up GoReleaser
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: "1.18"
|
|
|
|
- name: Build WireGuard-go
|
|
run: |
|
|
mkdir -p /opt/release/
|
|
git clone https://git.zx2c4.com/wireguard-go "./wireguard"
|
|
cd wireguard
|
|
go build -v -o "/opt/release/wireguard-go-${{ matrix.goos }}-${{ matrix.goarch }}"
|
|
|
|
- name: Release binaries
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
tag_name: wireguard
|
|
files: /opt/release/*
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
|