v0.0.16 #6
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
name: release | |
on: | |
workflow_dispatch: null | |
release: | |
types: [ published ] | |
jobs: | |
galaxyrelease: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
- name: update packages | |
run: sudo apt-get update -y | |
- name: install make | |
run: sudo apt-get install -y build-essential | |
- name: setup python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: build the package | |
run: make build | |
env: | |
SPECDOC_VERSION: ${{ github.event.release.tag_name }} | |
- name: publish the release to pypi | |
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # [email protected] | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} |