0.2.16 #69
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: | |
| 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: | |
| runs-on: ubuntu-latest | |
| if: github.event.action == 'released' && startsWith(github.ref, 'refs/tags') | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/ddeutil-io | |
| 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/gh-action-pypi-publish@v1.12.4 | |
| with: | |
| password: ${{ secrets.PYPI_API_TOKEN }} | |
| testpypi-publish: | |
| runs-on: ubuntu-latest | |
| if: github.event.action == 'prereleased' && startsWith(github.ref, 'refs/tags') | |
| environment: | |
| name: testpypi | |
| url: https://test.pypi.org/p/ddeutil-io | |
| 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/gh-action-pypi-publish@v1.12.4 | |
| with: | |
| password: ${{ secrets.PYPI_API_TOKEN }} | |
| repository-url: ${{ vars.PYPI_REPO_URL }} |