Skip to content

Commit

Permalink
Merge pull request #28 from sjvrijn/create-publish-workflow
Browse files Browse the repository at this point in the history
Create build_publish_pypi.yml github action
  • Loading branch information
sjvrijn authored Oct 22, 2021
2 parents 868b295 + 5eccf0a commit 994caef
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/build_publish_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Build and publish to (test.)pypi.org

# Controls when the workflow will run
on:
# Triggers the workflow on new version tags
push:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build-and-publish:
name: Build and publish to (test.)pypi.org
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9

- name: Install pypa/build
run: python -m pip install build --user

- name: build binary wheel and source tarball
run: python -m build --sdist --wheel --outdir dist/

- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags/v')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 994caef

Please sign in to comment.