Skip to content

GEMD v2.1.4 is released #2

GEMD v2.1.4 is released

GEMD v2.1.4 is released #2

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: Build
run: python setup.py sdist bdist_wheel
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}