From ef82ee7317db94be01fa103efcf170297b24f4e3 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 13 Jun 2025 22:49:12 +0000 Subject: [PATCH] Update '.gitea/workflows/build-push.yaml' --- .gitea/workflows/build-push.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-push.yaml b/.gitea/workflows/build-push.yaml index bd205e6..1c6dcb1 100644 --- a/.gitea/workflows/build-push.yaml +++ b/.gitea/workflows/build-push.yaml @@ -50,10 +50,11 @@ jobs: - name: Install yq uses: https://github.com/chrisdickinson/setup-yq@v1.0.0 - + - run: which yq + - run: yq --help - name: Update values.yaml run: | - yq -i ".image.tag = \"${SHORT_SHA}\"" rgbboard/rgbboard/values.yaml + yq -i -e ".image.tag = \"${SHORT_SHA}\"" rgbboard/rgbboard/values.yaml env: SHORT_SHA: ${{ steps.short_sha.outputs.short_sha }} - name: Commit and Push changes