Skip to content

feat(pr): change to use local pull request template from github (#16) #11

feat(pr): change to use local pull request template from github (#16)

feat(pr): change to use local pull request template from github (#16) #11

Workflow file for this run

name: Release Workflow
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
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.PYPI_TOKEN }}" >> $GITHUB_ENV
- name: Run make publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ env.pypi_token }}
run: make publish