Skip to content

Commit

Permalink
add an action to publish to testpypi
Browse files Browse the repository at this point in the history
Signed-off-by: Ruth Fuchss <[email protected]>
  • Loading branch information
ru-fu committed Dec 11, 2023
1 parent 10fb857 commit dcd5820
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/publish-to-testpypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Publish canonical-sphinx-extensions to TestPyPI
on: workflow_dispatch
jobs:
build:
name: Build package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Store the package
uses: actions/upload-artifact@v3
with:
name: python-package
path: dist/
publish:
name: Publish to TestPyPI
needs:
- build
runs-on: ubuntu-latest
environment:
name: testpypi
url: https://test.pypi.org/p/canonical-sphinx-extensions
permissions:
id-token: write
steps:
- name: Download package
uses: actions/download-artifact@v3
with:
name: python-package
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

0 comments on commit dcd5820

Please sign in to comment.