v2.2.1 - added missing bulk relationship tuples api #15
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: Release permit python SDK | ||
Check failure on line 1 in .github/workflows/release.yml GitHub Actions / Release permit python SDKInvalid workflow file
|
||
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 }} |