Skip to content

Commit b2302ee

Browse files
committed
debug logging
1 parent 533bb7c commit b2302ee

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/update-timestamps.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
- name: Check if new fatimage needed
6666
id: fatimage_check
6767
run: |
68+
git fetch origin refs/notes/*:refs/notes/*
6869
NEED_NEW_IMAGE=false
6970
set +e
7071
if git notes show ; then
@@ -74,8 +75,16 @@ jobs:
7475
fi
7576
fi
7677
set -e
78+
echo $NEED_NEW_IMAGE
7779
echo "new_fatimage=$NEED_NEW_IMAGE" >> "$GITHUB_OUTPUT"
7880
81+
debug:
82+
needs:
83+
- upstream_check
84+
runs-on: ubuntu-latest
85+
steps:
86+
- name: Debug
87+
run: echo "${{ needs.upstream_check.outputs.new_fatimage }}"
7988

8089
# todo: don't skip if rerun
8190
build_fatimage:

0 commit comments

Comments
 (0)