Skip to content

0.7.0 - Netbox 3.6 compatibility #15

0.7.0 - Netbox 3.6 compatibility

0.7.0 - Netbox 3.6 compatibility #15

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build and publish
run: |
poetry version $(git describe --tags --abbrev=0)
poetry build
poetry publish --username __token__ --password ${{ secrets.PYPI_PASSWORD }}