74 lines
2.2 KiB
YAML
74 lines
2.2 KiB
YAML
name: Release
|
|
on: [push]
|
|
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: Go cache paths
|
|
id: go-cache-paths
|
|
run: |
|
|
echo "::set-output name=go-build::$(go env GOCACHE)"
|
|
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
|
|
|
|
- name: Cache go module
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
${{ steps.go-cache-paths.outputs.go-mod }}
|
|
${{ steps.go-cache-paths.outputs.go-build }}
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Get dependencies, run test
|
|
run: |
|
|
go test ./...
|
|
|
|
- name: Build
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
env:
|
|
NAME: clash
|
|
BINDIR: bin
|
|
run: make -j releases
|
|
|
|
#- name: Prepare upload
|
|
# run: |
|
|
# echo "FILE_DATE=_$(date +"%Y%m%d%H%M")" >> $GITHUB_ENV
|
|
# echo "FILE_SHA=$(git describe --tags --always 2>/dev/null)" >> $GITHUB_ENV
|
|
#
|
|
#- name: Upload files to Artifacts
|
|
# uses: actions/upload-artifact@v2
|
|
# if: startsWith(github.ref, 'refs/tags/') == false
|
|
# with:
|
|
# name: clash_${{ env.FILE_SHA }}${{ env.FILE_DATE }}
|
|
# path: |
|
|
# bin/*
|
|
|
|
- name: Upload Release
|
|
uses: softprops/action-gh-release@v1
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
files: bin/*
|
|
draft: true
|
|
prerelease: true
|
|
generate_release_notes: true
|
|
|
|
#- name: Delete workflow runs
|
|
# uses: GitRML/delete-workflow-runs@main
|
|
# with:
|
|
# retain_days: 1
|
|
# keep_minimum_runs: 2
|