From 8ca1b75b5513045590430bea3fa555a09f403bb3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 20 Jan 2026 09:51:51 +0000 Subject: [PATCH 1/3] Initial plan From feda79e86746dabd1296d908df08d9f343b001eb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 20 Jan 2026 09:54:46 +0000 Subject: [PATCH 2/3] Add fetch-tags to build-and-push-all-images checkout step Co-authored-by: AndriMar <518454+AndriMar@users.noreply.github.com> --- .github/workflows/main-deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main-deploy.yml b/.github/workflows/main-deploy.yml index 72d755b..7c624ad 100644 --- a/.github/workflows/main-deploy.yml +++ b/.github/workflows/main-deploy.yml @@ -132,6 +132,7 @@ jobs: uses: actions/checkout@v4 with: lfs: ${{ inputs.build_checkout_with_lfs }} + fetch-tags: true - name: '️️️🏗️ Build and push image all images' uses: aproorg/github-workflows/.github/actions/build-and-push-image@main From 354b7e2617301dba875b3915dac18a091672d1ea Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 20 Jan 2026 10:13:54 +0000 Subject: [PATCH 3/3] Make fetch-tags configurable with input variable defaulting to false Co-authored-by: AndriMar <518454+AndriMar@users.noreply.github.com> --- .github/workflows/main-deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main-deploy.yml b/.github/workflows/main-deploy.yml index 7c624ad..905dd05 100644 --- a/.github/workflows/main-deploy.yml +++ b/.github/workflows/main-deploy.yml @@ -45,6 +45,10 @@ on: description: 'Checkout with LFS' type: boolean default: false + build_checkout_fetch_tags: + description: 'Fetch git tags during checkout' + type: boolean + default: false use_latest_tag: description: 'Use latest tag' type: boolean @@ -132,7 +136,7 @@ jobs: uses: actions/checkout@v4 with: lfs: ${{ inputs.build_checkout_with_lfs }} - fetch-tags: true + fetch-tags: ${{ inputs.build_checkout_fetch_tags }} - name: '️️️🏗️ Build and push image all images' uses: aproorg/github-workflows/.github/actions/build-and-push-image@main