From 7bc66c02a10f5c93c9860e539468528a14fa65d6 Mon Sep 17 00:00:00 2001 From: Emilien Devos <121870973+edevosc2c@users.noreply.github.com> Date: Mon, 12 Feb 2024 10:04:34 +0100 Subject: [PATCH] fix correct way to match 2023.02.xx-custom branch --- .github/workflows/mapstore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mapstore.yml b/.github/workflows/mapstore.yml index dc8ab80e5..c0b885119 100644 --- a/.github/workflows/mapstore.yml +++ b/.github/workflows/mapstore.yml @@ -102,7 +102,7 @@ jobs: password: ${{secrets.GITHUB_TOKEN}} - name: "Pushing 2023.02.xx-custom to docker.io" - if: github.ref == '2023.02.xx-custom' && github.repository == 'geo2france/mapstore2-georchestra' && github.event_name == 'push' + if: github.ref == 'refs/heads/2023.02.xx-custom' && github.repository == 'geo2france/mapstore2-georchestra' && github.event_name == 'push' run: | docker tag ghcr.io/geo2france/mapstore2-georchestra:${{ steps.version.outputs.VERSION }} ghcr.io/geo2france/mapstore2-georchestra:2023.02.xx-custom docker push ghcr.io/geo2france/mapstore2-georchestra:2023.02.xx-custom