Skip to content

GEMD v2.2.4 is released! #10

GEMD v2.2.4 is released!

GEMD v2.2.4 is released! #10

Workflow file for this run

name: Deploy to PyPI
on:
release:
types: [published]
jobs:
publish:
name: Publish package to PyPI
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install builder
run: pip install --upgrade build
- name: Build
run: python -m build
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}