2021-10-11 20:08:18 +08:00
|
|
|
name: Release
|
|
|
|
on: [push]
|
2019-08-15 11:40:40 +08:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-09-18 00:18:47 +08:00
|
|
|
- name: Get latest go version
|
|
|
|
id: version
|
|
|
|
run: |
|
|
|
|
echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g')
|
|
|
|
|
2019-10-14 10:40:00 +08:00
|
|
|
- name: Setup Go
|
2020-06-04 10:38:30 +08:00
|
|
|
uses: actions/setup-go@v2
|
2019-08-15 11:40:40 +08:00
|
|
|
with:
|
2021-09-18 00:18:47 +08:00
|
|
|
go-version: ${{ steps.version.outputs.go_version }}
|
2019-08-15 11:40:40 +08:00
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
2020-06-04 10:38:30 +08:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2019-11-06 12:05:18 +08:00
|
|
|
- name: Cache go module
|
2020-06-04 10:38:30 +08:00
|
|
|
uses: actions/cache@v2
|
2019-11-06 12:05:18 +08:00
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
2019-08-15 11:40:40 +08:00
|
|
|
|
2021-10-11 20:08:18 +08:00
|
|
|
- name: Get dependencies, run test
|
2019-08-15 11:40:40 +08:00
|
|
|
run: |
|
|
|
|
go test ./...
|
2019-10-14 10:40:00 +08:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
env:
|
|
|
|
NAME: clash
|
|
|
|
BINDIR: bin
|
|
|
|
run: make -j releases
|
|
|
|
|
|
|
|
- name: Upload Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
with:
|
|
|
|
files: bin/*
|
|
|
|
draft: true
|