Skip to content

Commit

Permalink
Trusted publishing can't be a reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LilSpazJoekp committed Oct 1, 2023
1 parent 0c075d6 commit 80bc19c
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/pypi.yml
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

0 comments on commit 80bc19c

Please sign in to comment.