Skip to content

Commit

Permalink
[BUG] fix script to upload file 1 at a time (#1492)
Browse files Browse the repository at this point in the history
  • Loading branch information
samster25 authored Oct 13, 2023
1 parent 8b5386b commit 167bb77
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build-artifact-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,11 @@ jobs:
container: messense/manylinux_2_24-cross:aarch64
args: --profile ${{ inputs.rust-profile }} --out dist
before-script-linux: export JEMALLOC_SYS_WITH_LG_PAGE=16

- name: Copy all files as zip for Glue
run: for foo in dist/*.whl; do cp $foo dist/`basename $foo .whl`.zip; done
run: for file in dist/*.whl; do cp $file dist/`basename $file .whl`.zip; done
- name: Upload files to s3
run: for file in dist/*; do aws s3 cp $file s3://github-actions-artifacts-bucket/daft-build-artifact-s3/${{ github.sha }}/ --no-progress; done

- name: Upload wheels to s3
run: aws s3 cp dist/* s3://github-actions-artifacts-bucket/daft-build-artifact-s3/${{ github.sha }}/ --no-progress


list-wheels:
Expand Down

0 comments on commit 167bb77

Please sign in to comment.