Skip to content

Fix release ci #115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
- v[0-9]+.[0-9]+.[0-9]+
jobs:
draft_release:
if: github.event_name == 'workflow_dispatch'
name: Create Draft GitHub Release
runs-on: ubuntu-latest
outputs:
Expand Down Expand Up @@ -47,12 +46,10 @@ jobs:
contents: read
packages: write
name: Publish Android
needs: [draft_release, build_android]
needs: [ draft_release, build_android ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/download-artifact@v4
with:
Expand All @@ -74,7 +71,7 @@ jobs:

publish_ios_pod_and_spm_package:
name: Publish iOS
needs: [draft_release]
needs: [ draft_release ]
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -142,7 +139,7 @@ jobs:

publish_linux_x86_64:
name: Publish Linux x86_64
needs: [draft_release]
needs: [ draft_release ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -167,7 +164,7 @@ jobs:

publish_linux_aarch64:
name: Publish Linux aarch64
needs: [draft_release]
needs: [ draft_release ]
runs-on: ubuntu-arm64
steps:
- uses: actions/checkout@v3
Expand All @@ -192,7 +189,7 @@ jobs:

publish_windows_x64:
name: Publish Windows x64
needs: [draft_release]
needs: [ draft_release ]
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -217,7 +214,7 @@ jobs:

publish_macOS_aarch64:
name: Publish macOS aarch64
needs: [draft_release]
needs: [ draft_release ]
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -242,7 +239,7 @@ jobs:

publish_macOS_x64:
name: Publish macOS x64
needs: [draft_release]
needs: [ draft_release ]
runs-on: macos-14
steps:
- uses: actions/checkout@v3
Expand All @@ -267,7 +264,7 @@ jobs:

publish_wasm:
name: Publish WASM builds
needs: [draft_release]
needs: [ draft_release ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -333,7 +330,7 @@ jobs:
--body "$BODY"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
GH_REPO: ${{ github.repository }}
TITLE: "Release checklist: ${{ needs.draft_release.outputs.tag }}"
ASSIGNES: ${{ github.event.push.sender }}
BODY: |
Expand Down
Loading