fix(ci): correct syntax errors in Gitea workflows

Quote shell variable assignment in auto-release to prevent word splitting
and fix whitespace typo in matrix reference (`matrix .yq-os` → `matrix.yq-os`)
in install-yq workflow.

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-08-17 22:14:28 +02:00
co-authored by Copilot
parent 27e819682f
commit 1aaa54e066
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ jobs:
if: steps.check_change.outputs.changed == 'true' if: steps.check_change.outputs.changed == 'true'
id: bump id: bump
run: | run: |
latest_tag=${{ steps.get_tag.outputs.latest_tag }} latest_tag="${{ steps.get_tag.outputs.latest_tag }}"
IFS='.' read -r major minor patch <<< "${latest_tag#v}" IFS='.' read -r major minor patch <<< "${latest_tag#v}"
patch=$((patch + 1)) patch=$((patch + 1))
new_tag="v${major}.${minor}.${patch}" new_tag="v${major}.${minor}.${patch}"
+1 -1
View File
@@ -38,6 +38,6 @@ jobs:
YQ_ARCH: ${{ matrix.yq-arch }} YQ_ARCH: ${{ matrix.yq-arch }}
YQ_BINARY_NAME: ${{ inputs.yq-binary-name }} YQ_BINARY_NAME: ${{ inputs.yq-binary-name }}
YQ_DOWNLOAD_URL: ${{ inputs.yq-download-url }} YQ_DOWNLOAD_URL: ${{ inputs.yq-download-url }}
YQ_OS: ${{ matrix .yq-os }} YQ_OS: ${{ matrix.yq-os }}
YQ_VERSION: ${{ inputs.yq-version }} YQ_VERSION: ${{ inputs.yq-version }}
run: ./install-yq.sh run: ./install-yq.sh