diff --git a/.github/workflows/build-test-riscv64.yml b/.github/workflows/build-test-riscv64.yml index 85bb5acb7..4c1faa87c 100644 --- a/.github/workflows/build-test-riscv64.yml +++ b/.github/workflows/build-test-riscv64.yml @@ -11,6 +11,10 @@ on: branches: - "**" +permissions: + contents: read + id-token: write + jobs: build_wheels: timeout-minutes: 60 @@ -101,7 +105,7 @@ 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 @@ -109,7 +113,7 @@ jobs: 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