Skip to content

Commit

Permalink
Fix plumbing of release steps
Browse files Browse the repository at this point in the history
  • Loading branch information
sgb-io committed Jul 20, 2023
1 parent 3d5d8ff commit dce0a93
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,16 @@ jobs:
runs-on: ubuntu-latest
needs: [upload_assets_macos, upload_assets_windows, upload_assets_linux]
steps:
- uses: actions/checkout@v3
- name: Update packages
run: sudo apt-get update
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
profile: minimal
target: x86_64-unknown-linux-musl
- name: Publish to crates.io
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Expand All @@ -175,7 +185,8 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'

- name: Download macOS artifacts
uses: actions/download-artifact@v2
Expand Down

0 comments on commit dce0a93

Please sign in to comment.