chore: workflow

This commit is contained in:
Skyxim
2022-05-02 00:59:41 +08:00
parent 9d8cd036ff
commit 032b6a2cc5
8 changed files with 155 additions and 57 deletions

View File

@@ -1,8 +1,13 @@
name: alpha
on: [push]
name: Alpha
on:
push:
branches:
- Alpha
pull_request:
branches:
- Alpha
jobs:
Build:
if: ${{ !contains(github.event.head_commit.message, '[Skip CI]') }}
runs-on: ubuntu-latest
steps:
- name: Get latest go version
@@ -24,9 +29,7 @@ jobs:
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
# - name: Get dependencies, run test
# run: |
# go test ./...
- name: Build
if: success()
env:
@@ -50,22 +53,10 @@ jobs:
- name: Upload Alpha
uses: softprops/action-gh-release@v1
if: ${{ env.GIT_BRANCH != 'Meta' && success() }}
if: ${{ success() }}
with:
tag: ${{ github.ref }}
tag: ${{env.GITHUB_REF_NAME}}
tag_name: alpha
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}}
generate_release_notes: true