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: Build, Test, and upload Transform images to quay.io | |
on: | |
release: | |
types: | |
- published | |
workflow_dispatch: | |
jobs: | |
build-images: | |
name: Build and check images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# for setuptools-scm | |
fetch-depth: 0 | |
- name: Build Package for pypi | |
run: | | |
make -C transforms image test-image | |
publish-images: | |
name: Publish packages to quay.io | |
# disabled | |
if: false | |
runs-on: ubuntu-latest | |
needs: build-images | |
steps: | |
- name: Push images to quay.io registry | |
run: | | |
make -C transforms publish |