Skip to content

Commit baa82ac

Browse files
ci: fix weekly check and add debug messages (#29)
1 parent b99cb76 commit baa82ac

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/weekly-release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,13 @@ jobs:
2424
id: remote
2525
run: echo "version=$(curl https://cdn.dl.k8s.io/release/stable.txt)" >> $GITHUB_OUTPUT
2626

27+
- name: Debug outputs
28+
run: |
29+
echo "Repository version: ${{ steps.repository.outputs.version }}"
30+
echo "Remote version: ${{ steps.remote.outputs.version }}"
31+
2732
- name: Create new tag
28-
if: steps.repository.outputs.version != steps.remote.outputs.version
33+
if: ${{ steps.repository.outputs.version != steps.remote.outputs.version }}
2934
env:
3035
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
3136
shell: bash

0 commit comments

Comments
 (0)