Skip to content

Commit fd74a58

Browse files
committed
try using tojson and not fromjson
Signed-off-by: Moritz Wiesinger <moritz.wiesinger@dynatrace.com>
1 parent d9e533f commit fd74a58

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

.github/workflows/base-ci-goreleaser.yaml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -190,15 +190,15 @@ jobs:
190190

191191
- name: Debugging1
192192
run: |
193-
echo '${{ toJSON(steps.build-snapshot.outputs).* }}'
193+
echo '${{ toJSON(steps.build-snapshot.outputs) }}'
194194
195195
- name: Debugging
196196
run: |
197-
echo '${{ steps.build-snapshot.outputs.metadata }}'
197+
echo '${{ toJSON(steps.build-snapshot.outputs.metadata) }}'
198198
199199
- name: Debugging
200200
run: |
201-
echo '${{ toJSON(steps.build-snapshot.outputs.metadata) }}'
201+
echo '${{ toJSON(steps.build-snapshot.outputs.artifacts) }}'
202202
203203
- name: Debugging
204204
run: |
@@ -242,15 +242,3 @@ jobs:
242242
# name: ${{ inputs.distribution }}-image-${{ env.VERSION }}-${{ env.ARCH }}
243243
# path: /tmp/${{ inputs.distribution }}.tar
244244
# retention-days: 7
245-
246-
debug:
247-
runs-on: ubuntu-22.04
248-
needs: [check-goreleaser]
249-
steps:
250-
- name: more debugging
251-
run: |
252-
echo '${{ needs.check-goreleaser.outputs.metadata }}'
253-
254-
- name: more debugging
255-
run: |
256-
echo '${{ needs.check-goreleaser.outputs.artifacts }}'

0 commit comments

Comments
 (0)