From c47f73ef194ee8c392ff1c8d708fa8caae19c68b Mon Sep 17 00:00:00 2001 From: Robert Eggl Date: Mon, 16 Dec 2024 00:01:20 +0100 Subject: [PATCH] chore: update deployment workflows to specify distinct image names for docs and webapp --- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/deploy-webapp.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 96112435..bc765e0e 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -10,7 +10,7 @@ on: # Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. env: REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} + IMAGE_NAME: ${{ github.repository }}/docs # There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. jobs: diff --git a/.github/workflows/deploy-webapp.yml b/.github/workflows/deploy-webapp.yml index f26a6ae6..e7a3904a 100644 --- a/.github/workflows/deploy-webapp.yml +++ b/.github/workflows/deploy-webapp.yml @@ -8,7 +8,7 @@ on: # Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. env: REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} + IMAGE_NAME: ${{ github.repository }}/webapp # There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. jobs: