We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 049880c commit 7ba0f52Copy full SHA for 7ba0f52
.github/workflows/base-ci-goreleaser.yaml
@@ -186,8 +186,12 @@ jobs:
186
if-no-files-found: error
187
188
- name: Debugging
189
+ env:
190
+ VERSION: ${{ fromJSON(steps.build-snapshot.outputs.metadata).version }}
191
+ ARCH: ${{ fromJSON(steps.build-snapshot.outputs.metadata).runtime.goos }}-${{ fromJSON(steps.build-snapshot.outputs.metadata).runtime.goarch }}
192
run: |
- echo '${{ toJSON(steps.build-snapshot.outputs) }}'
193
+ echo '${{ env.VERSION }}'
194
+ echo '${{ env.ARCH }}'
195
196
# - name: Debugging
197
# run: |
0 commit comments