Skip to content

Commit

Permalink
ci: split arm and non-arm target on beta release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
xhofe committed Sep 8, 2024
1 parent 8316f81 commit 73f0b13
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/beta_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,10 @@ jobs:
include:
- target: '!(*musl*|*windows-arm64*|*android*)' # xgo
hash: "md5"
- target: 'linux-*-musl*' #musl
- target: 'linux-!(arm*)-musl*' #musl-not-arm
hash: "md5-linux-musl"
- target: 'linux-arm*-musl*' #musl-arm
hash: "md5-linux-musl-arm"
- target: 'windows-arm64' #win-arm64
hash: "md5-windows-arm64"
- target: 'android-*' #android
Expand Down Expand Up @@ -98,9 +100,14 @@ jobs:
name: Beta Release Desktop
runs-on: ubuntu-latest
steps:
- uses: dusansimic/trigger-workflow-action@v0
- uses: peter-evans/create-or-update-comment@v4
with:
name: release_beta.yml
owner: alist-org
repo: desktop-release
github-token: ${{ secrets.MY_TOKEN }}
issue-number: 69
body: |
/release-beta
- 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

0 comments on commit 73f0b13

Please sign in to comment.