Skip to content

1.6.6 - Backward incompatible change in ruamel.yaml #3

1.6.6 - Backward incompatible change in ruamel.yaml

1.6.6 - Backward incompatible change in ruamel.yaml #3

Workflow file for this run

name: Deployment
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install pip -U
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}