v0.8.2 #55
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] | |
env: | |
UV_SYSTEM_PYTHON: true | |
jobs: | |
deploy: | |
name: Upload release to PyPI | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/pynxtools | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Install dependencies | |
run: | | |
curl -LsSf https://astral.sh/uv/install.sh | sh | |
uv 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: | | |
git reset --hard HEAD | |
python -m build | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |