From b646b32e3a32ff2dc47d86e706d715034139d290 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alby=20Hern=C3=A1ndez?= Date: Fri, 16 Feb 2024 21:27:12 +0000 Subject: [PATCH] fix: Automate GH Action worflows to build focker images --- .github/workflows/release-docker-images.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-docker-images.yaml b/.github/workflows/release-docker-images.yaml index 1059292..7e96cab 100644 --- a/.github/workflows/release-docker-images.yaml +++ b/.github/workflows/release-docker-images.yaml @@ -48,9 +48,9 @@ jobs: - name: Build and push run: | if [ "${{ github.event_name }}" = "release" ]; then - echo "TAG=${{ github.ref }}" >> $GITHUB_ENV + TAG="${{ github.ref }}" elif [ "${{ github.event_name }}" = "workflow_dispatch" ]; then - echo "TAG=${{ inputs.release }}" >> $GITHUB_ENV + TAG="${{ inputs.release }}" fi IMG="ghcr.io/freepik-company/tekton-exporter:$TAG" make docker-buildx