Skip to content

feat(release): Add release workflow and setup for publishing #7

feat(release): Add release workflow and setup for publishing

feat(release): Add release workflow and setup for publishing #7

Workflow file for this run

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.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install necessary packages for make
run: sudo apt-get update && sudo apt-get install -y build-essential
- name: Install Pipenv and build packages
run: |
python -m pip install --upgrade pip
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