2021-05-01 12:45:37 +02:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
2022-03-14 13:38:06 +01:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
2021-05-01 12:45:37 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0 # It is required for GoReleaser to work properly
|
2022-01-17 14:01:58 +01:00
|
|
|
|
|
|
|
- name: Generate syso with DLL
|
|
|
|
run: bash -x wireguard_nt.sh
|
|
|
|
working-directory: client
|
2021-05-01 12:45:37 +02:00
|
|
|
-
|
|
|
|
name: Set up Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2021-12-21 10:02:25 +01:00
|
|
|
go-version: 1.17
|
2021-05-01 12:45:37 +02:00
|
|
|
-
|
|
|
|
name: Cache Go modules
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
|
|
|
-
|
|
|
|
name: Install modules
|
|
|
|
run: go mod tidy
|
2021-05-11 09:38:41 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
-
|
2021-05-15 08:58:31 +02:00
|
|
|
name: Login to Docker hub
|
2021-05-11 09:38:41 +02:00
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
2021-05-15 08:58:31 +02:00
|
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
2021-05-01 12:45:37 +02:00
|
|
|
-
|
|
|
|
name: Run GoReleaser
|
|
|
|
uses: goreleaser/goreleaser-action@v2
|
|
|
|
with:
|
2022-03-14 13:38:06 +01:00
|
|
|
version: v1.6.3
|
2021-05-01 12:45:37 +02:00
|
|
|
args: release --rm-dist
|
|
|
|
env:
|
2021-09-06 10:20:26 +02:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-09-06 14:15:08 +02:00
|
|
|
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}
|
2021-10-12 12:15:45 +02:00
|
|
|
UPLOAD_DEBIAN_SECRET: ${{ secrets.PKG_UPLOAD_SECRET }}
|
|
|
|
UPLOAD_YUM_SECRET: ${{ secrets.PKG_UPLOAD_SECRET }}
|
2021-09-25 19:30:12 +02:00
|
|
|
|
2021-09-06 10:20:26 +02:00
|
|
|
-
|
2021-09-25 19:30:12 +02:00
|
|
|
name: Trigger Windows binaries sign pipeline
|
|
|
|
uses: benc-uk/workflow-dispatch@v1
|
2022-03-14 17:33:15 +01:00
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
2021-09-06 10:20:26 +02:00
|
|
|
with:
|
2021-09-25 19:30:12 +02:00
|
|
|
workflow: Sign windows bin and installer
|
|
|
|
repo: wiretrustee/windows-sign-pipeline
|
2022-03-03 10:21:58 +01:00
|
|
|
ref: v0.0.2
|
2021-09-25 19:30:12 +02:00
|
|
|
token: ${{ secrets.SIGN_GITHUB_TOKEN }}
|
2022-03-03 10:21:58 +01:00
|
|
|
inputs: '{ "tag": "${{ github.ref }}" }'
|