diff --git a/README.md b/README.md index d22d078..687c1bf 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ jobs: steps: ... - name: Upload wheel - uses: scientific-python/upload-nightly-action@b67d7fcc0396e1128a474d1ab2b48aa94680f9fc # 0.5.0 + uses: scientific-python/upload-nightly-action@ccf29c805b5d0c1dc31fa97fcdb962be074cade3 # 0.6.0 with: artifacts_path: dist anaconda_nightly_upload_token: ${{secrets.UPLOAD_TOKEN}} @@ -57,7 +57,7 @@ jobs: steps: ... - name: Upload wheel - uses: scientific-python/upload-nightly-action@b67d7fcc0396e1128a474d1ab2b48aa94680f9fc # 0.5.0 + uses: scientific-python/upload-nightly-action@ccf29c805b5d0c1dc31fa97fcdb962be074cade3 # 0.6.0 with: artifacts_path: dist anaconda_nightly_upload_organization: my-alternative-organization diff --git a/action.yml b/action.yml index de44a7f..4b5c381 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ permissions: contents: read metadata: read author: "Scientific-Python" -version: "0.6.0" +version: "0.6.1" inputs: artifacts_path: @@ -34,6 +34,8 @@ runs: cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }} # Avoid post cleanup errors if action run multiple times post-cleanup: false + # Action consumers should load the lock file from the action repo + manifest-path: ${{ github.action_path }}/pixi.toml - name: Upload wheels shell: bash @@ -43,4 +45,4 @@ runs: INPUT_ANACONDA_NIGHTLY_UPLOAD_TOKEN: ${{ inputs.anaconda_nightly_upload_token }} INPUT_ANACONDA_NIGHTLY_UPLOAD_LABELS: ${{ inputs.anaconda_nightly_upload_labels }} run: | - pixi run upload_wheels.sh + pixi run --manifest-path ${{ github.action_path }}/pixi.toml ${{ github.action_path }}/upload_wheels.sh diff --git a/pixi.toml b/pixi.toml index b056498..2b9e10a 100644 --- a/pixi.toml +++ b/pixi.toml @@ -4,7 +4,7 @@ channels = ["conda-forge"] description = "Environment for the scientific-python/upload-nightly-action GitHub action" name = "upload-nightly-action" platforms = ["linux-64", "osx-64", "osx-arm64"] -version = "0.6.0" +version = "0.6.1" [tasks]