[Chore]升级项目依赖
[Chore]隐藏TUN模式在system堆栈启动时弹窗
This commit is contained in:
parent
4fe3b781b0
commit
5cb6d373f0
1 changed files with 23 additions and 4 deletions
27
.github/workflows/alpha.yml
vendored
27
.github/workflows/alpha.yml
vendored
|
@ -41,12 +41,31 @@ jobs:
|
|||
tag: alpha
|
||||
deleteOnlyFromDrafts: false
|
||||
|
||||
- name: Tag Repo
|
||||
uses: richardsimko/update-tag@v1
|
||||
with:
|
||||
tag_name: alpha
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Upload Alpha
|
||||
uses: svenstaro/upload-release-action@v2
|
||||
uses: svenstaro/action-gh-release@v1
|
||||
if: ${{ env.GIT_BRANCH != 'Meta' && success() }}
|
||||
with:
|
||||
tag: ${{ github.ref }}
|
||||
asset_name: alpha
|
||||
overwrite: true
|
||||
tag_name: alpha
|
||||
files: bin/*
|
||||
prerelease: true
|
||||
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}}
|
Loading…
Reference in a new issue