Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
steveiliop56 committed Sep 3, 2024
1 parent 2995712 commit 0be8ba3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 20

- name: Build
run: ./build cargo-dev
run: ./build.sh cargo-dev

build-image:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:

- name: Build amd64 binary
run: |
./build cross x86_x64-unknown-linux-musl
./build.sh cross x86_x64-unknown-linux-musl
mv target/x86_x64-unknown-linux-musl/release/cup ./cup-linux-amd64
- name: Build arm64 binary
run: |
./build cross aarch64-unknown-linux-musl
./build.sh cross aarch64-unknown-linux-musl
mv target/aarch64-unknown-linux-musl/release/cup ./cup-linux-arm64
- name: Upload binaries
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:

- name: Build amd64 binary
run: |
./build cross x86_x64-unknown-linux-musl
./build.sh cross x86_x64-unknown-linux-musl
mv target/x86_x64-unknown-linux-musl/release/cup ./cup-linux-amd64
- name: Build arm64 binary
run: |
./build cross aarch64-unknown-linux-musl
./build.sh cross aarch64-unknown-linux-musl
mv target/aarch64-unknown-linux-musl/release/cup ./cup-linux-arm64
- name: Upload binaries
Expand Down

0 comments on commit 0be8ba3

Please sign in to comment.