From 78640e8833f9f4f8f81d6375660e99ee015c928d Mon Sep 17 00:00:00 2001 From: nathan Date: Sun, 15 Jun 2025 02:12:04 +0000 Subject: [PATCH] Update '.gitea/workflows/build-push.yaml' --- .gitea/workflows/build-push.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build-push.yaml b/.gitea/workflows/build-push.yaml index eaabac7..810d3ee 100644 --- a/.gitea/workflows/build-push.yaml +++ b/.gitea/workflows/build-push.yaml @@ -42,21 +42,19 @@ jobs: repository: wagshome/rgbboard token: ${{ secrets.runner_deploy }} path: rgbboard - - name: Set up Git run: | git config --global user.name "Gitea Actions" git config --global user.email "actions@nope.com" - - name: Install yq uses: https://github.com/chrisdickinson/setup-yq@v1.0.0 - - run: which yq - - run: yq --help + with: + yq-version: v4.45.4 - name: Update values.yaml run: | - yq -i \'.image.tag = env.SHORT_SHA\' rgbboard/rgbboard/values.yaml + yq -i '.image.tag = env(SHORT_SHA)' rgbboard/rgbboard/values.yaml env: - SHORT_SHA: ${{ steps.short_sha.outputs.short_sha }} + SHORT_SHA: ${{ steps.short-sha.outputs.short-sha }} - name: Commit and Push changes run: | cd repo