Skip to content

Commit

Permalink
Fix macos rust toolchain, release as draft
Browse files Browse the repository at this point in the history
  • Loading branch information
TrueCarry committed May 11, 2024
1 parent eb4bfc0 commit 0bf0bbe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: latest
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
Expand Down Expand Up @@ -115,6 +117,6 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
release_id: process.env.release_id,
draft: false,
draft: true,
prerelease: false
})

0 comments on commit 0bf0bbe

Please sign in to comment.