Skip to content

Fix the release build to install the runtime dependencies #6

Fix the release build to install the runtime dependencies

Fix the release build to install the runtime dependencies #6

Workflow file for this run

name: release
on:
push:
tags: ['v*.*.*'] # only a valid semver tag
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set Up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install pipenv
run: pip install pipenv
- name: Install
run: make install
- name: Install build tools
run: make install-build
- name: Build
run: make dist
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}