0.0.84 #171
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: publish | |
| on: | |
| workflow_dispatch: | |
| release: | |
| types: | |
| - prereleased | |
| - released | |
| permissions: | |
| contents: read | |
| jobs: | |
| release-build: | |
| name: Build distribution 📦 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Dump GitHub context | |
| env: | |
| GITHUB_CONTEXT: ${{ toJson(github) }} | |
| run: echo "$GITHUB_CONTEXT" | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.9" | |
| - uses: actions/cache@v4 | |
| id: cache | |
| with: | |
| path: ${{ env.pythonLocation }} | |
| key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-publish | |
| - name: Install build dependencies | |
| if: steps.cache.outputs.cache-hit != 'true' | |
| run: pip install build | |
| - name: Build Distribution | |
| run: python -m build | |
| - name: Upload Windows Dists | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: release-dists | |
| path: dist/ | |
| pypi-publish: | |
| name: Publish Python 🐍 distribution 📦 to PyPI | |
| runs-on: ubuntu-latest | |
| if: github.event.action == 'released' && startsWith(github.ref, 'refs/tags') | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/ddeutil-workflow | |
| needs: | |
| - release-build | |
| permissions: | |
| id-token: write | |
| steps: | |
| - name: Retrieve release distributions | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: release-dists | |
| path: dist/ | |
| - run: | | |
| echo "github ref is:" ${{ github.ref }} | |
| echo "event name is:" ${{ github.event_name }} | |
| echo "event type is:" ${{ github.event.action }} | |
| - name: Publish to PyPI | |
| uses: pypa/[email protected] | |
| testpypi-publish: | |
| name: Publish Python 🐍 distribution 📦 to TestPyPI | |
| runs-on: ubuntu-latest | |
| if: github.event.action == 'prereleased' && startsWith(github.ref, 'refs/tags') | |
| environment: | |
| name: testpypi | |
| url: https://test.pypi.org/p/ddeutil-workflow | |
| needs: | |
| - release-build | |
| permissions: | |
| id-token: write | |
| steps: | |
| - name: Retrieve release distributions | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: release-dists | |
| path: dist/ | |
| - run: | | |
| echo "github ref is:" ${{ github.ref }} | |
| echo "event name is:" ${{ github.event_name }} | |
| echo "event type is:" ${{ github.event.action }} | |
| - name: Publish to Test PyPI | |
| uses: pypa/[email protected] | |
| with: | |
| repository-url: ${{ vars.PYPI_REPO_URL }} | |
| github-release: | |
| name: >- | |
| Sign the Python 🐍 distribution 📦 with Sigstore | |
| and upload them to GitHub Release | |
| runs-on: ubuntu-latest | |
| needs: | |
| - pypi-publish | |
| permissions: | |
| contents: write | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Download all the dists | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: release-dists | |
| path: dist/ | |
| - name: Sign the dists with Sigstore | |
| uses: sigstore/[email protected] | |
| with: | |
| inputs: | | |
| ./dist/*.tar.gz | |
| ./dist/*.whl | |
| - name: Upload artifact signatures to GitHub Release | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh release upload "${{ github.event.release.tag_name }}" dist/** |