clash/.github/workflows/alpha.yml

71 lines
2.2 KiB
YAML
Raw Normal View History

name: Alpha
2022-01-25 12:53:07 +00:00
on: [push]
jobs:
Feature-build:
2022-01-25 13:12:49 +00:00
if: ${{ !contains(github.event.head_commit.message, '[Skip CI]') }}
2022-01-25 12:53:07 +00:00
runs-on: ubuntu-latest
steps:
- name: Get latest go version
id: version
run: |
2022-03-16 16:02:22 +00: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 12:53:07 +00: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 13:48:25 +00:00
uses: actions/checkout@v3
2022-01-25 12:53:07 +00: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-
# - name: Get dependencies, run test
# run: |
# go test ./...
2022-01-25 12:53:07 +00:00
- name: Build
if: success()
env:
NAME: Clash.Meta
BINDIR: bin
2022-01-25 13:59:48 +00:00
run: make -j releases
2022-03-28 11:02:51 +00:00
- name: Delete current release assets
uses: andreaswilli/delete-release-assets-action@v2.0.0
with:
2022-03-28 11:02:51 +00:00
github_token: ${{ secrets.GITHUB_TOKEN }}
tag: alpha
deleteOnlyFromDrafts: false
- name: Tag Repo
uses: richardsimko/update-tag@v1
with:
tag_name: alpha
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2022-03-16 15:02:16 +00:00
- name: Upload Alpha
2022-03-28 12:52:09 +00:00
uses: softprops/action-gh-release@v1
2022-01-25 12:53:07 +00:00
if: ${{ env.GIT_BRANCH != 'Meta' && success() }}
with:
tag: ${{ github.ref }}
tag_name: alpha
2022-01-25 12:53:07 +00:00
files: bin/*
prerelease: true
- name: send telegram message on push
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TTELEGRAM_CHAT_ID }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
${{ github.actor }} created commit:
Commit message: ${{ github.event.commits[0].message }}
Repository: ${{ github.repository }}
See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}