v1.3.2 - Update package config #48
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: CD | |
| on: | |
| # Only trigger when release is published | |
| release: | |
| types: | |
| - published | |
| # Allows you to run this workflow manually from the Actions tab | |
| # workflow_dispatch: | |
| # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
| # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: true | |
| jobs: | |
| debug: | |
| name: Run Debugging | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| - name: Check variables | |
| run: | | |
| echo "github.action: ${{ github.action }}" | |
| echo "github.action_path: ${{ github.action_path }}" | |
| echo "github.action_ref: ${{ github.action_ref }}" | |
| echo "github.action_repository: ${{ github.action_repository }}" | |
| echo "github.action_status: ${{ github.action_status }}" | |
| echo "github.actor: ${{ github.actor }}" | |
| echo "github.actor_id: ${{ github.actor_id }}" | |
| echo "github.api_url: ${{ github.api_url }}" | |
| echo "github.base_ref: ${{ github.base_ref }}" | |
| echo "github.env: ${{ github.env }}" | |
| echo "github.event_name: ${{ github.event_name }}" | |
| echo "github.event_path: ${{ github.event_path }}" | |
| echo "github.graphql_url: ${{ github.graphql_url }}" | |
| echo "github.head_ref: ${{ github.head_ref }}" | |
| echo "github.job: ${{ github.job }}" | |
| echo "github.job_workflow_sha: ${{ github.job_workflow_sha }}" | |
| echo "github.path: ${{ github.path }}" | |
| echo "github.ref: ${{ github.ref }}" | |
| echo "github.ref_name: ${{ github.ref_name }}" | |
| echo "github.ref_protected: ${{ github.ref_protected }}" | |
| echo "github.ref_type: ${{ github.ref_type }}" | |
| echo "github.repository: ${{ github.repository }}" | |
| echo "github.repository_id: ${{ github.repository_id }}" | |
| echo "github.repository_owner: ${{ github.repository_owner }}" | |
| echo "github.repository_owner_id: ${{ github.repository_owner_id }}" | |
| echo "github.repositoryUrl: ${{ github.repositoryUrl }}" | |
| echo "github.retention_days: ${{ github.retention_days }}" | |
| echo "github.run_attempt: ${{ github.run_attempt }}" | |
| echo "github.run_id: ${{ github.run_id }}" | |
| echo "github.run_number: ${{ github.run_number }}" | |
| echo "github.secret_source: ${{ github.secret_source }}" | |
| echo "github.server_url: ${{ github.server_url }}" | |
| echo "github.sha: ${{ github.sha }}" | |
| echo "github.token: ${{ github.token }}" | |
| echo "github.triggering_actor: ${{ github.triggering_actor }}" | |
| echo "github.workflow: ${{ github.workflow }}" | |
| echo "github.workflow_ref: ${{ github.workflow_ref }}" | |
| echo "github.workflow_sha: ${{ github.workflow_sha }}" | |
| echo "github.workspace: ${{ github.workspace }}" | |
| echo "github.event.action: ${{ github.event.action }}" | |
| echo "github.event.enterprise: ${{ github.event.enterprise }}" | |
| echo "github.event.organization: ${{ github.event.organization }}" | |
| echo "github.event.repository: ${{ github.event.repository }}" | |
| echo "github.event.sender: ${{ github.event.sender }}" | |
| echo "github.event.release.assets_url: ${{ github.event.release.assets_url }}" | |
| echo "github.event.release.author: ${{ github.event.release.author }}" | |
| echo "github.event.release.body: ${{ github.event.release.body }}" | |
| echo "github.event.release.created_at: ${{ github.event.release.created_at }}" | |
| echo "github.event.release.draft: ${{ github.event.release.draft }}" | |
| echo "github.event.release.html_url: ${{ github.event.release.html_url }}" | |
| echo "github.event.release.id: ${{ github.event.release.id }}" | |
| echo "github.event.release.name: ${{ github.event.release.name }}" | |
| echo "github.event.release.node_id: ${{ github.event.release.node_id }}" | |
| echo "github.event.release.prerelease: ${{ github.event.release.prerelease }}" | |
| echo "github.event.release.published_at: ${{ github.event.release.published_at }}" | |
| echo "github.event.release.tag_name: ${{ github.event.release.tag_name }}" | |
| echo "github.event.release.tarball_url: ${{ github.event.release.tarball_url }}" | |
| echo "github.event.release.target_commitish: ${{ github.event.release.target_commitish }}" | |
| echo "github.event.release.upload_url: ${{ github.event.release.upload_url }}" | |
| echo "github.event.release.url: ${{ github.event.release.url }}" | |
| echo "github.event.release.zipball_url: ${{ github.event.release.zipball_url }}" | |
| - name: Check Git | |
| run: | | |
| git status | |
| git branch | |
| test: | |
| name: Run Tests | |
| if: ${{ always() }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write #<-- to allow push changes to the repository | |
| steps: | |
| - name: Checkout repository | |
| id: checkout-repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Set up Python | |
| id: setup-python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Set up Git | |
| id: setup-git | |
| env: | |
| GITHUB_ACTOR: ${{ github.actor }} | |
| run: | | |
| make configure-git | |
| make git-switch-to-main-branch | |
| make git-refresh-current-branch | |
| - name: Install dependencies | |
| id: install-dependencies | |
| run: make install-all | |
| - name: Run checks | |
| id: run-checks | |
| run: make check | |
| - name: Copy coverage report | |
| id: copy-coverage-report | |
| run: make copy-coverage-report | |
| - name: Commit coverage report | |
| id: commit-coverage-report | |
| run: make commit-coverage-report | |
| - name: Upload coverage | |
| id: upload-coverage | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: ./cov-report/xml/cov-report.xml | |
| verbose: true | |
| build-package: | |
| name: Build Package | |
| needs: test | |
| if: ${{ always() && needs.test.result == 'success' }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write #<-- to allow assets to be uploaded to the release | |
| steps: | |
| - name: Checkout repository | |
| id: checkout-repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Setup Python | |
| id: setup-python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Check VERSION | |
| id: check-version | |
| env: | |
| VERSION: ${{ github.event.release.tag_name }} | |
| run: | | |
| if [ -z "${VERSION}" ]; then | |
| echo "/$VERSION is missing. Please try again." | |
| exit 1 | |
| fi | |
| - name: Install dependencies | |
| run: make install | |
| - name: Setup Git | |
| id: setup-git | |
| env: | |
| GITHUB_ACTOR: ${{ github.actor }} | |
| run: | | |
| make configure-git | |
| make git-switch-to-main-branch | |
| make git-refresh-current-branch | |
| - name: Bump version | |
| id: bump-version | |
| env: | |
| VERSION: ${{ github.event.release.tag_name }} | |
| run: make bump-version | |
| - name: Update Git | |
| id: update-git | |
| env: | |
| VERSION: ${{ github.event.release.tag_name }} | |
| run: make update-git | |
| - name: Build package | |
| id: build-package | |
| run: make build-package | |
| - name: Upload assets | |
| id: upload-assets | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: dist/* | |
| - name: Upload artifacts | |
| id: upload-artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: dist | |
| path: dist/* | |
| retention-days: 1 | |
| overwrite: true | |
| deploy-package: | |
| name: Deploy to PyPI | |
| needs: build-package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| id: checkout-repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Setup Python | |
| id: setup-python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Download artifacts | |
| id: download-artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: dist | |
| path: dist | |
| - name: Publish package | |
| id: publish-package | |
| env: | |
| PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
| run: make publish-package | |
| - name: Check | |
| id: check | |
| run: | | |
| echo 'Package deployed to PyPI 👉 https://pypi.org/project/toolbox-python/' | |
| uvx pip install --dry-run --no-deps --no-cache toolbox-python | |
| install-package: | |
| name: Install Package on '${{ matrix.os }}' with '${{ matrix.python-version }}' | |
| needs: deploy-package | |
| if: ${{ always() && needs.deploy-package.result == 'success' }} | |
| strategy: | |
| matrix: | |
| os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | |
| python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
| fail-fast: false | |
| max-parallel: 15 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repository | |
| id: checkout-repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| - name: Setup Python | |
| id: setup-python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install package | |
| id: install-package | |
| run: pip install --no-cache toolbox-python | |
| build-docs: | |
| name: Build Docs | |
| needs: | |
| - test | |
| - deploy-package | |
| if: ${{ always() && needs.test.result == 'success' && needs.deploy-package.result == 'success' }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write #<-- to allow mike to push to the repository | |
| steps: | |
| - name: Checkout repository | |
| id: checkout-repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Setup Python | |
| id: setup-python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Install dependencies | |
| id: install-dependencies | |
| run: make install-docs | |
| - name: Setup Git | |
| id: setup-git | |
| env: | |
| GITHUB_ACTOR: ${{ github.actor }} | |
| run: | | |
| make configure-git | |
| make git-switch-to-main-branch | |
| make git-refresh-current-branch | |
| - name: Build docs | |
| id: build-docs | |
| env: | |
| VERSION: ${{ github.event.release.tag_name }} | |
| GITHUB_ACTOR: ${{ github.actor }} | |
| run: make build-versioned-docs |