Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python package and publish | |
on: | |
release: | |
types: [published] | |
jobs: | |
pypi-publish: | |
name: Package and upload release to PyPI | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install building dependencies | |
run: pip -q install build | |
- name: Build package | |
run: python -m build --outdir dist/ . | |
- name: Install package | |
run: pip -q install dist/pyangbind-*.whl | |
- name: Test bind with pyang | |
run: | | |
export PYBINDPLUGIN=`/usr/bin/env python -c 'import pyangbind; import os; print ("{}/plugin".format(os.path.dirname(pyangbind.__file__)))'` | |
pyang -V --plugindir $PYBINDPLUGIN -f pybind tests/base-test.yang | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |