From d31fe7a8d1d56917d0008c5de7817adbcf2e2b66 Mon Sep 17 00:00:00 2001 From: antoniochavesgarcia Date: Fri, 2 Feb 2024 10:30:53 +0100 Subject: [PATCH] feat (.github): Created image creation job. --- .github/workflows/jupyterhub-base-py3.11.yml | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/jupyterhub-base-py3.11.yml diff --git a/.github/workflows/jupyterhub-base-py3.11.yml b/.github/workflows/jupyterhub-base-py3.11.yml new file mode 100644 index 0000000..f260f84 --- /dev/null +++ b/.github/workflows/jupyterhub-base-py3.11.yml @@ -0,0 +1,22 @@ +on: + push: + paths: + - jupyterhub/base-py3.11/**/* + - .github/workflows/jupyterhub-base-py3.11.yml + - .github/workflows/builder.yml + branches: + - "master" + - "main" + - "latest" + release: + types: + - created +jobs: + build-jupyterhub-base-py311: + uses: ./.github/workflows/builder.yml + with: + context: jupyterhub/base-py3.11 + dockerfile: jupyterhub/base-py3.11/Dockerfile + name: ertis-research/jupyterhub-base-py3.11 + platforms: linux/amd64 +