Skip to content

Commit

Permalink
Use v3 for upload and download actions
Browse files Browse the repository at this point in the history
Signed-off-by: Sreekanth <[email protected]>
  • Loading branch information
BulkBeing committed Aug 21, 2024
1 parent bd203aa commit b7be6a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:
- name: Build binary
run: RUSTFLAGS='-C target-feature=+crt-static' cargo build --release --target x86_64-unknown-linux-gnu
- name: Rename binary
run: cp -pv rust/target/x86_64-unknown-linux-gnu/release/numaflow numaflow-rs-linux-amd64
run: cp -pv target/x86_64-unknown-linux-gnu/release/numaflow numaflow-rs-linux-amd64
- name: Upload numaflow binary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: numaflow-rs-linux-amd64
path: numaflow-rs-linux-amd64
Expand Down Expand Up @@ -94,9 +94,9 @@ jobs:
- name: Build binary
run: export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER='aarch64-linux-gnu-gcc' && RUSTFLAGS='-C target-feature=+crt-static' cargo build --release --target aarch64-unknown-linux-gnu
- name: Rename binary
run: cp -pv rust/target/aarch64-unknown-linux-gnu/release/numaflow numaflow-rs-linux-arm64
run: cp -pv target/aarch64-unknown-linux-gnu/release/numaflow numaflow-rs-linux-arm64
- name: Upload numaflow binary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: numaflow-rs-linux-arm64
path: numaflow-rs-linux-arm64
Expand Down

0 comments on commit b7be6a0

Please sign in to comment.