fix syntax error (both uses and run)
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
77e8a6e5ae
commit
33847b8b4b
1 changed files with 6 additions and 4 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -71,22 +71,24 @@ jobs:
|
|||
direnv exec . engage
|
||||
|
||||
- name: Build static-x86_64-unknown-linux-musl
|
||||
run: ./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl
|
||||
run: |
|
||||
./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl
|
||||
cp result/bin/conduit conduit
|
||||
|
||||
- name: Upload artifact static-x86_64-unknown-linux-musl
|
||||
uses: actions/upload-artifact@v4
|
||||
run: cp result/bin/conduit conduit
|
||||
with:
|
||||
name: static-x86_64-unknown-linux-musl
|
||||
path: conduit
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Build static-aarch64-unknown-linux-musl
|
||||
run: ./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl
|
||||
run: |
|
||||
./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl
|
||||
cp result/bin/conduit conduit
|
||||
|
||||
- name: Upload artifact static-aarch64-unknown-linux-musl
|
||||
uses: actions/upload-artifact@v4
|
||||
run: cp result/bin/conduit conduit
|
||||
with:
|
||||
name: static-aarch64-unknown-linux-musl
|
||||
path: conduit
|
||||
|
|
Loading…
Add table
Reference in a new issue