Skip to content

Commit

Permalink
Fix workflow for risc (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmmarslender committed Feb 8, 2024
1 parent 30112cc commit 7c5a803
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-test-riscv64.yml
Expand Up @@ -11,6 +11,10 @@ on:
branches:
- "**"

permissions:
contents: read
id-token: write

jobs:
build_wheels:
timeout-minutes: 60
Expand Down Expand Up @@ -101,15 +105,15 @@ jobs:
if: env.RELEASE == 'true'
shell: sh
run: |
aws s3 ls s3://download.chia.net/simple/chiavdf/ > existing_wheel_list_raw
aws s3 ls s3://download.chia.net/simple/chiapos/ > existing_wheel_list_raw
cat existing_wheel_list_raw
cat existing_wheel_list_raw | tr -s ' ' | cut -d ' ' -f 4 > existing_wheel_list
- name: List new wheels
if: env.RELEASE == 'true'
shell: sh
run: |
(cd dist/; ls ${{ inputs.package_name }}-*.whl) > new_wheel_list
(cd dist/; ls chiapos-*.whl) > new_wheel_list
cat new_wheel_list | xargs -I % sh -c 'ls -l dist/%'
- name: Choose wheels to upload
Expand Down

0 comments on commit 7c5a803

Please sign in to comment.