feat(release): Add release workflow and setup for publishing #5
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 Workflow | |
# on: | |
# push: | |
# tags: | |
# - '[0-9]+.[0-9]+.[0-9]+' | |
on: | |
- pull_request | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install necessary packages for make | |
run: sudo apt-get update && sudo apt-get install -y build-essential | |
- name: Install Pipenv | |
run: pip install pipenv build | |
- name: Install project dependencies | |
run: pipenv install --dev | |
- name: Set up PyPI Token | |
run: echo "pypi_token=${{ secrets.TEST_PYPI_TOKEN }}" >> $GITHUB_ENV | |
- name: Run make publish | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ env.pypi_token }} | |
run: make publish-test |