-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trusted publishing can't be a reusable workflow
- Loading branch information
1 parent
ca143b5
commit 5240be0
Showing
1 changed file
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
jobs: | ||
pypi-publish: | ||
name: Publish Python Package | ||
secrets: inherit | ||
uses: praw-dev/.github/.github/workflows/pypi.yml@main | ||
name: Publish Python Package | ||
environment: release | ||
name: Upload release to PyPI | ||
permissions: | ||
id-token: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build | ||
- name: Build package | ||
run: python -m build | ||
- name: Publish package distributions to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
name: Upload Python Package | ||
on: | ||
release: | ||
types: [ published ] | ||
permissions: | ||
contents: read | ||
id-token: write |