Skip to content

Add updated CITATION.cff from codemeta.json file #5

Add updated CITATION.cff from codemeta.json file

Add updated CITATION.cff from codemeta.json file #5

Workflow file for this run

name: Pypi Publish
on:
push:
tags:
- v*
jobs:
build-n-publish:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/iga
permissions:
id-token: write
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1