ci: split arm and non-arm target on beta release workflow

pull/6836/merge
Andy Hsu 2024-09-08 23:58:53 +08:00
parent 8316f81e41
commit 73f0b135b6
1 changed files with 13 additions and 6 deletions

View File

@ -51,8 +51,10 @@ jobs:
include: include:
- target: '!(*musl*|*windows-arm64*|*android*)' # xgo - target: '!(*musl*|*windows-arm64*|*android*)' # xgo
hash: "md5" hash: "md5"
- target: 'linux-*-musl*' #musl - target: 'linux-!(arm*)-musl*' #musl-not-arm
hash: "md5-linux-musl" hash: "md5-linux-musl"
- target: 'linux-arm*-musl*' #musl-arm
hash: "md5-linux-musl-arm"
- target: 'windows-arm64' #win-arm64 - target: 'windows-arm64' #win-arm64
hash: "md5-windows-arm64" hash: "md5-windows-arm64"
- target: 'android-*' #android - target: 'android-*' #android
@ -98,9 +100,14 @@ jobs:
name: Beta Release Desktop name: Beta Release Desktop
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: dusansimic/trigger-workflow-action@v0 - uses: peter-evans/create-or-update-comment@v4
with: with:
name: release_beta.yml issue-number: 69
owner: alist-org body: |
repo: desktop-release /release-beta
github-token: ${{ secrets.MY_TOKEN }} - triggered by ${{ github.actor }}
- commit sha: ${{ github.sha }}
- view files: https://github.com/alist-org/alist/tree/${{ github.sha }}
reactions: 'rocket'
token: ${{ secrets.MY_TOKEN }}
repository: alist-org/desktop-release