From f540c473510cba5e9995a419256fcb9e4cde85b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9rick=20Pruneau?= Date: Wed, 25 Feb 2026 13:00:29 -0500 Subject: [PATCH] fixed wrong package naming in runner's script --- .gitea/workflows/node-ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/node-ci.yaml b/.gitea/workflows/node-ci.yaml index 4c94957..646227a 100644 --- a/.gitea/workflows/node-ci.yaml +++ b/.gitea/workflows/node-ci.yaml @@ -95,11 +95,11 @@ jobs: if: ${{ success() }} run: | echo "VERSION_NUMBER=$(date +'%y%m%d.%H%M%S')" >> $GITHUB_ENV - docker build -t git.targo.ca/targo/targo_backend_staging:2.${{ env.VERSION_NUMBER }} . - docker tag git.targo.ca/targo/targo_backend_staging:2.${{ env.VERSION_NUMBER }} git.targo.ca/targo/targo_backend_staging:latest + docker build -t git.targo.ca/targo/targo-backend-staging:2.${{ env.VERSION_NUMBER }} . + docker tag git.targo.ca/targo/targo-backend-staging:2.${{ env.VERSION_NUMBER }} git.targo.ca/targo/targo-backend-staging:latest docker login -u ${{ secrets.CI_USER }} -p ${{ secrets.CI_PASSWORD }} git.targo.ca - docker push git.targo.ca/targo/targo_backend_staging:2.${{ env.VERSION_NUMBER }} - docker push git.targo.ca/targo/targo_backend_staging:latest + docker push git.targo.ca/targo/targo-backend-staging:2.${{ env.VERSION_NUMBER }} + docker push git.targo.ca/targo/targo-backend-staging:latest - name: Notify Google Chat if: ${{ failure() }} # Use always to ensure that the notification is also send on failure of former steps