diff --git a/.github/workflows/package_build.yml b/.github/workflows/package_build.yml index dfaf2c2..7f4b4a7 100644 --- a/.github/workflows/package_build.yml +++ b/.github/workflows/package_build.yml @@ -67,6 +67,6 @@ jobs: key: wasi-sdk-25.0.0 - run: cargo run -- install-build-tools - - run: cargo run -- build ${{ inputs.project }} ${{ inputs.version }} ${{ inputs.python_3_12 && '--python-versions py3-12' || '' }} ${{ inputs.python_3_13 && '--python-versions py3-13' || '' }} ${{ inputs.publish && '--publish' || '' }} ${{ inputs.publish && '--repo ${{ github.repository }}' || '' }} ${{ inputs.publish && '--run-id ${{ github.run_id }}' || '' }} + - run: cargo run -- build ${{ inputs.project }} ${{ inputs.version }} ${{ inputs.python_3_12 && '--python-versions py3-12' || '' }} ${{ inputs.python_3_13 && '--python-versions py3-13' || '' }} ${{ inputs.publish && '--publish' format('--publish --repo {0} --run-id {1}', ${{ github.repository }}, ${{ github.run_id }}) || '' }} env: GH_TOKEN: ${{ github.token }}