Skip to content

Commit

Permalink
📦️ Switch to using GitHub OIDC for PyPI (#876)
Browse files Browse the repository at this point in the history
  • Loading branch information
nfx authored Jul 11, 2024
1 parent 4f8bc3e commit 91f7f25
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/onrelease.yml → .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# reference configuration: https://github.com/databrickslabs/ucx/blob/main/.github/workflows/release.yml

name: release

on:
Expand All @@ -7,20 +9,21 @@ on:

jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 1
matrix:
python-version: [ 3.8 ]
os: [ ubuntu-latest ]
environment: release
permissions:
# Used to authenticate to PyPI via OIDC and sign the release's artifacts with sigstore-python.
id-token: write
# Used to attach signing artifacts to the published release.
contents: write
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: 3.8
cache: 'pip'

- name: Install pip
Expand All @@ -37,9 +40,6 @@ jobs:

- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.LABS_PYPI_TOKEN }}

- name: Create Release
id: create_release
Expand Down

0 comments on commit 91f7f25

Please sign in to comment.