Skip to content

Commit

Permalink
Update OIDC workflow configuration (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrjones authored Apr 16, 2024
1 parent 036edb1 commit 0444873
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/pypi-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ jobs:
test-built-dist:
needs: build-artifacts
runs-on: ubuntu-latest
environment:
name: release
url: https://test.pypi.org/p/cmip6-downscaling
permissions:
id-token: write
steps:
- uses: actions/[email protected]
name: Install Python
Expand All @@ -82,15 +87,18 @@ jobs:
- name: Publish package to TestPyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository-url: https://test.pypi.org/legacy/
# verbose: true

upload-to-pypi:
needs: test-built-dist
if: github.event_name == 'release'
runs-on: ubuntu-latest
environment: release
environment:
name: release
url: https://pypi.org/p/cmip6-downscaling
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 0444873

Please sign in to comment.