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-01-25 20:53:07 +08:00
|
|
|
|
2022-03-16 23:02:16 +08:00
|
|
|
- name: Upload Alpha
|
2022-01-25 20:53:07 +08:00
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: ${{ env.GIT_BRANCH != 'Meta' && success() }}
|
|
|
|
with:
|
2022-03-16 23:09:05 +08:00
|
|
|
tag_name: alpha
|
2022-01-25 20:53:07 +08:00
|
|
|
files: bin/*
|
2022-01-27 12:25:53 +08:00
|
|
|
prerelease: true
|