Skip to content

Commit

Permalink
Fix typo in upload-artifact condition
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 25, 2024
1 parent d1307b5 commit 221302e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- run: cargo run -- expand --manifest-path tests/Cargo.toml > expand.rs && diff tests/lib.expand.rs expand.rs
if: startsWith(matrix.rust, 'nightly')
- uses: actions/upload-artifact@v4
if: matrix.os == 'ubunut' && matrix.rust == 'nightly' && always()
if: matrix.os == 'ubuntu' && matrix.rust == 'nightly' && always()
with:
name: Cargo.lock
path: Cargo.lock
Expand Down

0 comments on commit 221302e

Please sign in to comment.