5.0.1 #32
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
# SPDX-FileCopyrightText: 2021-2024 Jeff Epler | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Release wwvbgen | |
on: | |
release: | |
types: [published] | |
jobs: | |
release: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install deps | |
run: | | |
python -mpip install wheel | |
python -mpip install -r requirements-dev.txt | |
- name: Test | |
run: make coverage | |
- name: Build release | |
run: python -mbuild | |
- name: Upload release | |
run: twine upload -u "$TWINE_USERNAME" -p "$TWINE_PASSWORD" dist/* | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.pypi_token }} |