Skip to content

Commit 5c2f777

Browse files
authored
Merge pull request #205 from Concordium/fix-typo-in-CI-pipeline
matrix.platfrom had a typo
2 parents a0f48f5 + 94b671a commit 5c2f777

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release-cargo-concordium.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
- name: Install rust toolchain
2626
uses: dtolnay/rust-toolchain@1.74
2727
- name: Build on ubuntu
28-
if: matrix.platfrom == 'ubuntu-latest'
28+
if: matrix.platform == 'ubuntu-latest'
2929
run: |
3030
rustup target add x86_64-unknown-linux-musl
3131
cargo build --release --manifest-path cargo-concordium/Cargo.toml --target x86_64-unknown-linux-musl
3232
- name: Build on other platforms
33-
if: matrix.platfrom != 'ubuntu-latest'
33+
if: matrix.platform != 'ubuntu-latest'
3434
run: cargo build --release --manifest-path cargo-concordium/Cargo.toml
3535
- name: Upload artifact
3636
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)