0.90.4rc2 #26
Workflow file for this run
This file contains hidden or 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: Update Version and Upload Package | |
| on: | |
| release: | |
| types: [published] | |
| permissions: | |
| contents: write | |
| jobs: | |
| update-version: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event.repository.default_branch }} | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: '3.x' | |
| - name: Install build tooling | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install build | |
| - name: Extract version from tag | |
| id: extract_version | |
| run: | | |
| # Extract the version from the Git tag | |
| tag=$(echo ${GITHUB_REF} | sed 's/refs\/tags\///') | |
| echo "VERSION=$tag" >> $GITHUB_ENV | |
| - name: Configure Git | |
| run: | | |
| git config --global user.email "actions@github.com" | |
| git config --global user.name "GitHub Actions" | |
| - name: Update project version files | |
| env: | |
| VERSION: ${{ env.VERSION }} | |
| run: | | |
| python - <<'PY' | |
| from pathlib import Path | |
| import os | |
| import re | |
| version = os.environ.get("VERSION") | |
| if not version: | |
| raise SystemExit("VERSION environment variable is required") | |
| def update_file(path: str, pattern: str, replacement: str) -> None: | |
| file_path = Path(path) | |
| text = file_path.read_text() | |
| new_text, count = re.subn(pattern, replacement, text, flags=re.MULTILINE) | |
| if count != 1: | |
| raise SystemExit(f"Failed to update {path}: pattern not found or not unique") | |
| file_path.write_text(new_text) | |
| update_file("pyproject.toml", r'^version = ".*"$', f'version = "{version}"') | |
| update_file("setup.py", r"version='[^']*'", f"version='{version}'") | |
| PY | |
| git status --short | |
| - name: Commit version update | |
| env: | |
| VERSION: ${{ env.VERSION }} | |
| DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} | |
| run: | | |
| BRANCH="$DEFAULT_BRANCH" | |
| if [ -z "$BRANCH" ]; then | |
| echo "Default branch is not defined" >&2 | |
| exit 1 | |
| fi | |
| git checkout "$BRANCH" | |
| if [ -n "$(git status --porcelain)" ]; then | |
| git commit -am "Update version to $VERSION" | |
| git push origin HEAD:"$BRANCH" | |
| else | |
| echo "No changes to commit" | |
| fi | |
| - name: Build package | |
| run: python -m build | |
| - name: Publish package | |
| uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_API_TOKEN }} |