mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
|
name: Release
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- "v*"
|
||
|
jobs:
|
||
|
Build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- 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')
|
||
|
- name: Setup Go
|
||
|
uses: actions/setup-go@v2
|
||
|
with:
|
||
|
go-version: ${{ steps.version.outputs.go_version }}
|
||
|
|
||
|
- name: Check out code into the Go module directory
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Cache go module
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: ~/go/pkg/mod
|
||
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-go-
|
||
|
- name: Test
|
||
|
run: |
|
||
|
go test ./...
|
||
|
- name: Build
|
||
|
if: success()
|
||
|
env:
|
||
|
NAME: Clash.Meta
|
||
|
BINDIR: bin
|
||
|
run: make -j releases
|
||
|
|
||
|
- name: Upload Release
|
||
|
uses: softprops/action-gh-release@v1
|
||
|
if: ${{ success() && startsWith(github.ref, 'refs/tags/')}}
|
||
|
with:
|
||
|
tag: ${{ github.ref }}
|
||
|
files: bin/*
|
||
|
generate_release_notes: true
|