From 42bc2c3bfe5f160da97a17b6bee349e459521c02 Mon Sep 17 00:00:00 2001 From: Ethan Turner Date: Thu, 16 Jul 2026 20:22:46 -0700 Subject: [PATCH] ci: fix version argument pass to build workflow --- .github/workflows/version-bump.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index 29ef948..0d2afb0 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -34,9 +34,11 @@ jobs: - name: Capture new version id: version run: echo "value=$(bump-my-version show current_version)" >> "$GITHUB_OUTPUT" + outputs: + version: ${{ steps.version.outputs.value }} build: needs: bump uses: ./.github/workflows/docker.yml with: - version: ${{needs.bump.outputs.version}} + version: ${{ needs.bump.outputs.version }} secrets: inherit \ No newline at end of file