2022-05-02 00:59:41 +08:00
|
|
|
name: Alpha
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- Alpha
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- Alpha
|
2022-01-25 20:53:07 +08:00
|
|
|
jobs:
|
2022-04-27 15:22:42 +08:00
|
|
|
Build:
|
2022-01-25 20:53:07 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Get latest go version
|
|
|
|
id: version
|
|
|
|
run: |
|
2022-03-17 00:02:22 +08:00
|
|
|
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')
|
2022-01-25 20:53:07 +08:00
|
|
|
- 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
|
2022-03-06 21:48:25 +08:00
|
|
|
uses: actions/checkout@v3
|
2022-01-25 20:53:07 +08:00
|
|
|
|
|
|
|
- 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-
|
2022-05-02 00:59:41 +08:00
|
|
|
|
2022-01-25 20:53:07 +08:00
|
|
|
- name: Build
|
|
|
|
if: success()
|
|
|
|
env:
|
|
|
|
NAME: Clash.Meta
|
|
|
|
BINDIR: bin
|
2022-01-25 21:59:48 +08:00
|
|
|
run: make -j releases
|
2022-03-28 19:02:51 +08:00
|
|
|
|
|
|
|
- name: Delete current release assets
|
|
|
|
uses: andreaswilli/delete-release-assets-action@v2.0.0
|
2022-03-28 16:36:34 +08:00
|
|
|
with:
|
2022-03-28 19:02:51 +08:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
tag: alpha
|
|
|
|
deleteOnlyFromDrafts: false
|
2022-03-28 16:36:34 +08:00
|
|
|
|
2022-03-28 20:44:52 +08:00
|
|
|
- name: Tag Repo
|
|
|
|
uses: richardsimko/update-tag@v1
|
|
|
|
with:
|
|
|
|
tag_name: alpha
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-03-16 23:02:16 +08:00
|
|
|
- name: Upload Alpha
|
2022-03-28 20:52:09 +08:00
|
|
|
uses: softprops/action-gh-release@v1
|
2022-05-02 00:59:41 +08:00
|
|
|
if: ${{ success() }}
|
2022-01-25 20:53:07 +08:00
|
|
|
with:
|
2022-05-02 00:59:41 +08:00
|
|
|
tag: ${{env.GITHUB_REF_NAME}}
|
2022-03-28 20:44:52 +08:00
|
|
|
tag_name: alpha
|
2022-01-25 20:53:07 +08:00
|
|
|
files: bin/*
|
2022-03-28 20:44:52 +08:00
|
|
|
prerelease: true
|
2022-05-02 00:59:41 +08:00
|
|
|
generate_release_notes: true
|