pin rio-vrt #6
Workflow file for this run
This file contains 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: Create release artifacts | |
on: | |
workflow_dispatch: | |
# running this when PR opens we'll do in prep-release manually, see that file for more details | |
push: | |
branches: | |
- 'release/**' | |
workflow_run: | |
workflows: [Create a new release] | |
types: | |
- completed | |
jobs: | |
pypi: | |
runs-on: ubuntu-latest | |
outputs: | |
url: ${{ steps.upload-pypi-release-artifacts.outputs.artifact-url }} | |
if: ${{ github.event_name == 'push' || github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
with: | |
python-version: '3.11' | |
- name: generate env | |
run: | | |
pip install tomli flit twine | |
- name: Build artifacts | |
run: | | |
git clean -xdf | |
git restore -SW . | |
flit build | |
python -m twine check dist/* | |
- name: Publish package to TestPyPI | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TEST_TOKEN }} | |
repository-url: https://test.pypi.org/legacy/ | |
verbose: true | |
skip-existing: true | |
- uses: actions/upload-artifact@v4 | |
id: upload-pypi-release-artifacts | |
with: | |
name: pypi-release-artifacts | |
path: dist | |
docs: | |
runs-on: ubuntu-latest | |
outputs: | |
url: ${{ steps.upload-docs-release-artifacts.outputs.artifact-url }} | |
if: ${{ github.event_name == 'push' || github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: "v0.21.1" | |
environments: full-py311 | |
- name: Generate docs | |
run: | | |
pixi run -e full-py311 install | |
pixi run --locked -e full-py311 doc | |
- uses: actions/upload-artifact@v4 | |
id: upload-docs-release-artifacts | |
with: | |
name: docs-release-artifacts | |
path: docs/_build | |
docker: | |
runs-on: ubuntu-latest | |
outputs: | |
url: ${{ steps.upload-docker-release-artifacts.outputs.artifact-url }} | |
if: ${{ github.event_name == 'push' || github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub to check credentials | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and export | |
uses: docker/build-push-action@v6 | |
with: | |
outputs: type=docker,dest=/tmp/hydromt-docker-image.tar | |
tags: hydromt | |
- name: Run Tests | |
run: | | |
docker load --input /tmp/hydromt-docker-image.tar | |
docker run --env NUMBA_DISABLE_JIT=1 --rm hydromt | |
- name: Test Binder integration with repo2docker | |
run: | | |
pip install jupyter-repo2docker | |
repo2docker . echo 'success!' | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
id: upload-docker-release-artifacts | |
with: | |
name: hydromt-docker-image | |
path: /tmp/hydromt-docker-image.tar | |
notify: | |
needs: | |
- pypi | |
- docs | |
- docker | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Add comment to PR | |
env: | |
GH_TOKEN: ${{ github.token }} | |
pypi_url: ${{needs.pypi.outputs.url}} | |
docker_url: ${{needs.docker.outputs.url}} | |
docs_url: ${{needs.docs.outputs.url}} | |
run: | | |
echo "The new release artifacts have been generated and tested. You can download and inspect them if you want by using the links below: " > comment.txt | |
echo " - pypi: $pypi_url" >> comment.txt | |
echo " - docker: $docker_url" >> comment.txt | |
echo " - docs: $docs_url" >> comment.txt | |
export PR_ID=$(gh pr list --state "open" --author "app/github-actions" --search "release" --json "number" --jq '. | first | .number') | |
gh pr comment $PR_ID --body-file comment.txt |