From e1084ba74d028b0b9bfe47639cfb85a946344c88 Mon Sep 17 00:00:00 2001 From: mdtanker Date: Thu, 23 Nov 2023 09:25:11 +0100 Subject: [PATCH] chore: fixing cd.yml --- .github/workflows/cd.yml | 119 ++++++++++++++++++++------------------- 1 file changed, 61 insertions(+), 58 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index aeb7340f..52de76ef 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -6,71 +6,74 @@ on: branches: - main +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: - # job to determine appropriate version number, update changelog, and create a release commit - release: + # checkout the repo and supply a PAT for the changelog update commit. + checkout-repo: + name: Checkout repository + with: + fetch-depth: 0 + token: ${{secrets.PAT}} + uses: actions/checkout@v3 + + # determine appropriate version number, update changelog, and create a release commit + semantic-release: + name: Semantic Release runs-on: ubuntu-latest - concurrency: release + needs: checkout-repo permissions: id-token: write contents: write + uses: python-semantic-release/python-semantic-release@master - steps: - # Checkout the repo and supply a PAT for the changelog update commit. - - name: Checkout repository - id: checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - token: ${{secrets.PAT}} - - # Determine the next version number and update the changelog. - - name: Python Semantic Release - id: semantic-release - uses: python-semantic-release/python-semantic-release@master + # Always build & lint package. + build-package: + name: Build & verify package + needs: checkout-repo + uses: hynek/build-and-inspect-python-package@v1 - # Always build & lint package. - - name: Build & verify package - id: build-package - uses: hynek/build-and-inspect-python-package@v1 + # Download the build package files + download-package: + name: Download packages built by build-and-inspect-python-package + needs: build-package + with: + name: Packages + path: dist + uses: actions/download-artifact@v3 - # Download the build package files - - name: Download packages built by build-and-inspect-python-package - uses: actions/download-artifact@v3 - with: - name: Packages - path: dist - - # Upload to Test PyPI on every commit on main. - - name: Publish in-dev package to test.pypi.org - id: release-test-pypi - needs: [semantic-release, build-package] - environment: - name: testpypi - url: https://pypi.org/p/invert4geom - permissions: - id-token: write # IMPORTANT: this permission is mandatory for trusted publishing - if: github.ref == 'refs/heads/main' - uses: pypa/gh-action-pypi-publish@release/v1 - with: - repository-url: https://test.pypi.org/legacy/ + # Upload to Test PyPI on every commit on main. + release-test-pypi: + name: Publish in-dev package to test.pypi.org + needs: [semantic-release, build-package, download-package] + environment: + name: testpypi + url: https://pypi.org/p/invert4geom + permissions: + id-token: write # IMPORTANT: this permission is mandatory for trusted publishing + if: github.ref == 'refs/heads/main' + with: + repository-url: https://test.pypi.org/legacy/ + uses: pypa/gh-action-pypi-publish@release/v1 - # Upload to real PyPI on GitHub Releases. - - name: Publish released package to pypi.org - id: release-pypi - needs: [semantic-release, build-package] - environment: - name: pypi - url: https://pypi.org/p/invert4geom - permissions: - id-token: write # IMPORTANT: this permission is mandatory for trusted publishing - if: github.ref == 'refs/heads/main' - uses: pypa/gh-action-pypi-publish@release/v1 + # Upload to real PyPI on GitHub Releases. + release-pypi: + name: Publish released package to pypi.org + needs: [semantic-release, build-package, download-package] + environment: + name: pypi + url: https://pypi.org/p/invert4geom + permissions: + id-token: write # IMPORTANT: this permission is mandatory for trusted publishing + if: github.ref == 'refs/heads/main' + uses: pypa/gh-action-pypi-publish@release/v1 - # Upload to GitHub Releases. - - name: Publish package distributions to GitHub Releases - id: release-github - if: steps.semantic-release.outputs.released == 'true' - # if: ${{ always() && contains(join(needs.*.result, ','), 'success') }} - needs: [semantic-release, build-package] - uses: python-semantic-release/upload-to-gh-release@main + # Upload to GitHub Releases. + release-github: + name: Publish package distributions to GitHub Releases + if: steps.semantic-release.outputs.released == 'true' + # if: ${{ always() && contains(join(needs.*.result, ','), 'success') }} + needs: [semantic-release, build-package, download-package] + uses: python-semantic-release/upload-to-gh-release@main