Skip to content
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

ci: fix installation order in release pipeline #410

Merged
merged 1 commit into from
Dec 18, 2024
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
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,17 @@ jobs:
- name: Run sccache-cache
uses: mozilla-actions/[email protected]

- name: Setup Commitizen
run: pip install commitizen==2.42.1
# Triggers installation of the Rust toolchain
# Must be done before wasm-pack is installed
- name: Cargo metadata
run: cargo metadata --format-version 1

- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh

- name: Setup Commitizen
run: pip install commitizen==2.42.1

- name: Generate canister declarations
run: dfx generate

Expand Down
Loading