We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48117ba commit 7042673Copy full SHA for 7042673
.github/workflows/base-ci-goreleaser.yaml
@@ -189,12 +189,13 @@ jobs:
189
if-no-files-found: error
190
191
- name: Prepare variables
192
+ id: prep
193
run: |
- echo "VERSION=$(cat ./distributions/${{ inputs.distribution }}/dist/**/metadata.json | jq '.version')" >> "$GITHUB_OUTPUT"
194
+ echo "version=$(cat ./distributions/${{ inputs.distribution }}/dist/**/metadata.json | jq '.version')" >> "$GITHUB_OUTPUT"
195
196
- name: Debugging
197
- echo '${{ env.VERSION }}'
198
+ echo '${{ steps.prep.outputs.version }}'
199
200
# - name: Build container images locally
201
# if: contains(fromJSON(steps.build-snapshot.outputs.artifacts).*.type, 'Docker Image') == 'true'
0 commit comments