Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Merge pull request #107 from Accruent/dependabot/github_actions/nick-… #71

Merge pull request #107 from Accruent/dependabot/github_actions/nick-…

Merge pull request #107 from Accruent/dependabot/github_actions/nick-… #71

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI
on:
push:
branches:
- master
release:
types:
- published
jobs:
build-and-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/[email protected]
with:
python-version: 3.8
- name: Build ApplicationLibrary
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: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}