mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
62 lines
1.4 KiB
YAML
62 lines
1.4 KiB
YAML
name: Prerelease
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- Alpha
|
|
- Beta
|
|
pull_request:
|
|
branches:
|
|
- Alpha
|
|
- Beta
|
|
jobs:
|
|
Build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.19'
|
|
check-latest: true
|
|
cache: true
|
|
|
|
- name: Test
|
|
if: ${{github.ref_name=='Beta'}}
|
|
run: |
|
|
go test ./...
|
|
|
|
- name: Build
|
|
if: success()
|
|
env:
|
|
NAME: Clash.Meta
|
|
BINDIR: bin
|
|
run: make -j$(($(nproc) + 1)) releases
|
|
|
|
- name: Delete current release assets
|
|
uses: mknejp/delete-release-assets@v1
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
tag_name: Prerelease-${{ github.ref_name }}
|
|
assets: |
|
|
*.zip
|
|
*.gz
|
|
|
|
- name: Tag Repo
|
|
uses: richardsimko/update-tag@v1.0.6
|
|
with:
|
|
tag_name: Prerelease-${{ github.ref_name }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Upload Alpha
|
|
uses: softprops/action-gh-release@v1
|
|
if: ${{ success() }}
|
|
with:
|
|
tag_name: Prerelease-${{ github.ref_name }}
|
|
files: bin/*
|
|
prerelease: true
|
|
generate_release_notes: true
|