Skip to content

v2.2.1 - added missing bulk relationship tuples api #15

v2.2.1 - added missing bulk relationship tuples api

v2.2.1 - added missing bulk relationship tuples api #15

Workflow file for this run

name: Release permit python SDK

Check failure on line 1 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release permit python SDK

Invalid workflow file

The workflow is not valid. Unexpected type 'SequenceToken' encountered while reading 'workflow on value workflow_dispatch'. The type 'MappingToken' was expected.
on:
release:
# job will automatically run after a new "release" is create on github.
types: [created]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch: []
jobs:
build-n-publish:
name: Build and publish permit python SDK to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install python deps
run: >-
python -m pip install build twine wheel --user
- name: Build & Publish SDK
run: >-
make publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}