Skip to content

Commit

Permalink
fix variable
Browse files Browse the repository at this point in the history
  • Loading branch information
8LWXpg committed Aug 27, 2024
1 parent 134d47e commit 5006e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
- name: Run Cargo
run: |
if ("${{ matrix.feature }}" -eq "sudo") {
cargo build --release --target $env:matrix_target
cargo build --release --target "${{ matrix.target }}"
} else {
cargo build --release --target $env:matrix_target --features $env:matrix_feature
cargo build --release --target "${{ matrix.target }}" --features "${{ matrix.feature }}"
}
- name: Archive
Expand Down

0 comments on commit 5006e98

Please sign in to comment.