Skip to content

Commit

Permalink
Add override option to build steps in cd workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oleander committed Jan 25, 2025
1 parent a9311a1 commit 644aa9d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true

- name: Configure git
run: |
Expand Down Expand Up @@ -99,7 +100,6 @@ jobs:
toolchain: nightly
target: ${{ matrix.target }}
override: true
profile: minimal

- name: Add x86_64-unknown-linux-musl target
if: matrix.target == 'x86_64-unknown-linux-musl'
Expand Down Expand Up @@ -143,6 +143,9 @@ jobs:

- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true

- name: Publish to crates.io
run: cargo publish --allow-dirty

0 comments on commit 644aa9d

Please sign in to comment.