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

Merge pull request #11 from WardPearce/dependabot/pip/pytest-7.4.3 #9

Merge pull request #11 from WardPearce/dependabot/pip/pytest-7.4.3

Merge pull request #11 from WardPearce/dependabot/pip/pytest-7.4.3 #9

Workflow file for this run

name: Production workflow
on:
push:
branches:
- main
jobs:
base-production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install
- name: Pack to pypi
env:
PYPI_USER: ${{ secrets.PYPI_USER }}
PYPI_PASS: ${{ secrets.PYPI_PASS }}
run: |
poetry build
poetry publish --username $PYPI_USER --password $PYPI_PASS