From b15fb1f669e0c32d65641f7de3e3fe7fc8988720 Mon Sep 17 00:00:00 2001 From: Marcin Dobrochowski Date: Fri, 20 Dec 2024 11:43:19 +0100 Subject: [PATCH] fix image version bump during release - double quotes are not allowed --- .github/workflows/_build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_build.yaml b/.github/workflows/_build.yaml index 364a76148..4bf12e004 100644 --- a/.github/workflows/_build.yaml +++ b/.github/workflows/_build.yaml @@ -31,13 +31,13 @@ jobs: tags: ${{ steps.get_tag.outputs.TAGS }} steps: - name: Checkout - if: ${{ github.inputs.tag == "" }} # not release + if: ${{ github.inputs.tag == '' }} # not release uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Checkout (release) - if: ${{ github.inputs.tag != "" }} # release + if: ${{ github.inputs.tag != '' }} # release uses: actions/checkout@v4 with: ref: ${{ github.ref_name }} # Checkout to latest branch changes