Skip to content

Commit 022f2a5

Browse files
committed
fixed outputs
1 parent 1a5d3a3 commit 022f2a5

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

.github/workflows/update-timestamps.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
upstream_check:
1010
outputs:
11-
new_fatimage: "{{ steps.fatimage_check.outputs.new_fatimage }}"
11+
new_fatimage: "${{ steps.fatimage_check.outputs.new_fatimage }}"
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
@@ -77,18 +77,7 @@ jobs:
7777
set -e
7878
echo $NEED_NEW_IMAGE
7979
echo "new_fatimage=$NEED_NEW_IMAGE" >> "$GITHUB_OUTPUT"
80-
81-
debug:
82-
needs:
83-
- upstream_check
84-
runs-on: ubuntu-latest
85-
steps:
86-
- name: Debug
87-
run: echo "$TST"
88-
env:
89-
TST: ${{ needs.upstream_check.outputs.new_fatimage }}
9080
91-
# todo: don't skip if rerun
9281
build_fatimage:
9382
if: needs.upstream_check.outputs.new_fatimage == 'true'
9483
needs: upstream_check

0 commit comments

Comments
 (0)