diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index ff73f4a..2740690 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -10,7 +10,16 @@ jobs: build_and_publish_pypi_and_release: uses: neongeckocom/.github/.github/workflows/publish_stable_release.yml@master secrets: inherit - build_and_publish_docker: + build_and_publish_docker_gradio: needs: build_and_publish_pypi_and_release uses: neongeckocom/.github/.github/workflows/publish_docker.yml@master - secrets: inherit \ No newline at end of file + secrets: inherit + with: + build_args: EXTRAS=gradio + build_and_publish_docker_websat: + needs: build_and_publish_pypi_and_release + uses: neongeckocom/.github/.github/workflows/publish_docker.yml@master + secrets: inherit + with: + build_args: EXTRAS=web_sat + image_name: ${{ github.repository }}-websat \ No newline at end of file diff --git a/.github/workflows/publish_test_build.yml b/.github/workflows/publish_test_build.yml index 5d9d572..2af420a 100644 --- a/.github/workflows/publish_test_build.yml +++ b/.github/workflows/publish_test_build.yml @@ -16,7 +16,16 @@ jobs: version_file: "neon_iris/version.py" setup_py: "setup.py" publish_prerelease: true - build_and_publish_docker: + build_and_publish_docker_gradio: needs: publish_alpha_release uses: neongeckocom/.github/.github/workflows/publish_docker.yml@master - secrets: inherit \ No newline at end of file + secrets: inherit + with: + build_args: EXTRAS=gradio + build_and_publish_docker_websat: + needs: publish_alpha_release + uses: neongeckocom/.github/.github/workflows/publish_docker.yml@master + secrets: inherit + with: + build_args: EXTRAS=web_sat + image_name: ${{ github.repository }}-websat \ No newline at end of file