initial commit #1
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
# Publish package on main branch if it's tagged with 'v*' | |
# Ref: https://github.community/t/run-workflow-on-push-tag-on-specific-branch/17519 | |
name: build & release | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
tags: | |
- 'v*' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# After you create the GitHub repo, head over to `pypi.org` and create | |
# an API Token, or use the link below: | |
# <https://pypi.org/manage/account/token> | |
# | |
# Once you have an API token, add it as a Repository Secret (PYPI_API_TOKEN) | |
# under the GitHub repo, so that it can be used by GitHub Actions to deploy | |
# to `pypi.org` whenever a new tag is pushed to GitHub: | |
# <https://github.com/rnag/cert-hero/settings/secrets/actions/new> | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-versions: [3.8] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# Temporarily disable this - I want it to trigger on merge, but it doesn't | |
# work (at least not on a tagged commit too) | |
# - name: Exit if not on main branch | |
# if: endsWith(github.ref, 'main') == false | |
# run: exit -1 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-versions }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox-gh-actions wheel | |
- name: Build wheels and source tarball | |
run: >- | |
make dist | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
skip_existing: true |