Skip to content

[dfg] Fix NRF download URL regex #36

[dfg] Fix NRF download URL regex

[dfg] Fix NRF download URL regex #36

Workflow file for this run

name: Upload PyPi Package
on:
push:
branches:
- develop
- develop-**
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install lxml jinja2 deepdiff CppHeaderParser setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload --skip-existing dist/*