We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b99cb76 commit baa82acCopy full SHA for baa82ac
.github/workflows/weekly-release.yml
@@ -24,8 +24,13 @@ jobs:
24
id: remote
25
run: echo "version=$(curl https://cdn.dl.k8s.io/release/stable.txt)" >> $GITHUB_OUTPUT
26
27
+ - name: Debug outputs
28
+ run: |
29
+ echo "Repository version: ${{ steps.repository.outputs.version }}"
30
+ echo "Remote version: ${{ steps.remote.outputs.version }}"
31
+
32
- name: Create new tag
- if: steps.repository.outputs.version != steps.remote.outputs.version
33
+ if: ${{ steps.repository.outputs.version != steps.remote.outputs.version }}
34
env:
35
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
36
shell: bash
0 commit comments