v0.0.6 #12
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: Upload Python Package | |
on: | |
release: | |
types: [published] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
# - name: Git tag version | |
# id: git_tag_version | |
# run: | | |
# # Extract the version from the tag (e.g., 'v1.0.0' becomes '1.0.0') | |
# GIT_TAG_VERSION=${GITHUB_REF#refs/tags/v} | |
# echo "GIT_TAG_VERSION=$GIT_TAG_VERSION" >> $GITHUB_ENV | |
# echo "Version from Git tag: $GIT_TAG_VERSION" | |
# - name: Citation version | |
# id: citation_version | |
# run: | | |
# # Parse the version from the CITATION.cff file | |
# CITATION_VERSION=$(grep '^version:' CITATION.cff | cut -d' ' -f2) | |
# echo "CITATION_VERSION=$CITATION_VERSION" >> $GITHUB_ENV | |
# echo "Version from CITATION.cff: $CITATION_VERSION" | |
# - name: Compare versions | |
# run: | | |
# if [ "$GIT_TAG_VERSION" != "$CITATION_VERSION" ]; then | |
# echo "Version mismatch: Git tag version is $GIT_TAG_VERSION, CITATION.cff version is $CITATION_VERSION" | |
# exit 1 | |
# fi | |
- name: Build package | |
run: python -m build | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
verbose: true | |
# with: | |
# user: __token__ | |
# password: ${{secrets.PYPI_API_TOKEN}} |