Skip to content

Commit

Permalink
Merge pull request #113 from netreplica/dev
Browse files Browse the repository at this point in the history
pypa package and netbox 3.6 test coverage
  • Loading branch information
bortok authored Apr 19, 2024
2 parents 5fec7dc + 8fa3f60 commit aeaf94a
Show file tree
Hide file tree
Showing 26 changed files with 8,144 additions and 6,601 deletions.
77 changes: 77 additions & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Publish Python distribution to PyPI and TestPyPI

on:
push:
branches: [ "main", "dev" ]

jobs:
build:
name: Build distribution
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: make build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/

publish-to-testpypi:
name: Publish to TestPyPI
needs:
- build
runs-on: ubuntu-latest

environment:
name: devtest
url: https://test.pypi.org/p/nrx

permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

publish-to-pypi:
name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags/v') # only publish to PyPI on tag pushes that start with 'v'
needs:
- build
runs-on: ubuntu-latest

environment:
name: release
url: https://pypi.org/p/nrx

permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,4 @@ tests/*/d2/*
tests/main.conf
tmp
demo
dist
Loading

0 comments on commit aeaf94a

Please sign in to comment.