Skip to content

GH-616: Release version 6.8.4 (#742) #196

GH-616: Release version 6.8.4 (#742)

GH-616: Release version 6.8.4 (#742) #196

Workflow file for this run

on:
push:
branches: [ main ]
jobs:
build_and_package_pypi:
if: contains(github.event.head_commit.message, 'Release')
name: Build and package Pypi
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v1
with:
python-version: 3.7
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}