Skip to content

Hotfix: Replaces egrep with grep -E (0.5.0) #21

Hotfix: Replaces egrep with grep -E (0.5.0)

Hotfix: Replaces egrep with grep -E (0.5.0) #21

Workflow file for this run

name: Upload Python Package
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
sudo apt-get install make
- name: Build package
run: make build_dist
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}