From 0f7ece4886b7eaf70aace7e914cf18eb97deab90 Mon Sep 17 00:00:00 2001 From: Valentin Heiserer Date: Mon, 25 Aug 2025 17:27:18 +0200 Subject: [PATCH] fix: update workflow to use 'main' branch instead of 'master' --- .github/workflows/BuildAndPushCotnainer.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/BuildAndPushCotnainer.yml b/.github/workflows/BuildAndPushCotnainer.yml index 34f537c..93d1492 100644 --- a/.github/workflows/BuildAndPushCotnainer.yml +++ b/.github/workflows/BuildAndPushCotnainer.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: push: branches: - - master + - main env: REGISTRY: ghcr.io @@ -43,7 +43,7 @@ jobs: context: ./frontend file: ./frontend/Dockerfile push: true - # Always push the normal tags; if this is a master push, + # Always push the normal tags; if this is a main push, # prepend "latest" to the list. - tags: ${{ github.ref == 'refs/heads/master' && format('{0},latest', steps.meta.outputs.tags) || steps.meta.outputs.tags }} + tags: ${{ github.ref == 'refs/heads/main' && format('{0},latest', steps.meta.outputs.tags) || steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file