From 45312207c96ba04f63fa953a662c94411ebe0033 Mon Sep 17 00:00:00 2001 From: charlesgauthereau Date: Thu, 17 Jul 2025 11:58:13 +0200 Subject: [PATCH] Ready for release soon. --- .github/workflows/release.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 21b75a30..61216447 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,17 @@ jobs: with: images: solucetechnologies/portabase + - name: Set tags + id: set-tags + run: | + echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV + TAGS="solucetechnologies/portabase:${GITHUB_REF#refs/tags/}" + if [ "${{ github.event.release.target_commitish }}" = "main" ]; then + TAGS="$TAGS,solucetechnologies/portabase:latest" + fi + echo "tags=$TAGS" >> $GITHUB_OUTPUT + + - name: Build and push Docker image id: push uses: docker/build-push-action@v6