update flexible_legal_basis boolean field to be optional #31
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: Publish fideslang | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
upload_to_pypi: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Twine | |
run: pip install twine | |
- name: Build Distributions | |
run: | | |
python -m pip install build | |
python -m build | |
- name: Twine Upload | |
run: twine upload dist/* | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} |