Skip to content

Commit

Permalink
Add publish to pypi task
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonynsimon committed Sep 1, 2023
1 parent ab68cd9 commit 387011a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Publish to PyPI

on:
push:
tags:
- '*'

jobs:
publish:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
- name: Test
run: inv test

- name: Build
run: inv build

- name: Publish to PyPI
env:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
run: inv publish --token "$PYPI_API_TOKEN"

0 comments on commit 387011a

Please sign in to comment.