2022-01-27 12:25:53 +08:00
|
|
|
name: Alpha
|
2022-01-25 20:53:07 +08:00
|
|
|
on: [push]
|
|
|
|
jobs:
|
2022-01-27 12:25:53 +08:00
|
|
|
Feature-build:
|
2022-01-25 21:12:49 +08:00
|
|
|
if: ${{ !contains(github.event.head_commit.message, '[Skip CI]') }}
|
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-01-27 12:25:53 +08:00
|
|
|
# - name: Get dependencies, run test
|
|
|
|
# run: |
|
|
|
|
# go test ./...
|
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 17:07:11 +08:00
|
|
|
- name: Delete old tag and release
|
|
|
|
uses: dev-drprasad/delete-tag-and-release@v0.2.0
|
2022-03-28 16:36:34 +08:00
|
|
|
with:
|
2022-03-28 17:07:11 +08:00
|
|
|
delete_release: false # default: false
|
2022-03-28 18:41:30 +08:00
|
|
|
# tag_name: alpha # tag name to delete
|
2022-03-28 16:36:34 +08:00
|
|
|
repo: <owner>/<repoName> # target repo (optional). defaults to repo running this action
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-03-16 23:02:16 +08:00
|
|
|
- name: Upload Alpha
|
2022-03-28 16:36:34 +08:00
|
|
|
uses: svenstaro/upload-release-action@v2
|
2022-01-25 20:53:07 +08:00
|
|
|
if: ${{ env.GIT_BRANCH != 'Meta' && success() }}
|
|
|
|
with:
|
2022-03-28 16:36:34 +08:00
|
|
|
tag: ${{ github.ref }}
|
|
|
|
asset_name: alpha
|
|
|
|
overwrite: true
|
2022-01-25 20:53:07 +08:00
|
|
|
files: bin/*
|
2022-01-27 12:25:53 +08:00
|
|
|
prerelease: true
|