We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 968acfe commit 297416fCopy full SHA for 297416f
.github/workflows/wiki.yml
@@ -51,12 +51,7 @@ jobs:
51
52
- name: Check if there are changes
53
id: changes
54
- run: |
55
- if [ -n "$(git status -s)" ]; then
56
- echo "changed=true" >> $GITHUB_OUTPUT
57
- else
58
- echo "changed=false" >> $GITHUB_OUTPUT
59
- fi
+ run: echo "changed=$([ -n \"$(git status -s)\" ] && echo true || echo false)" >> $GITHUB_OUTPUT
60
61
- name: Add and commit files
62
if: ${{ steps.changes.outputs.changed == 'true' }}
@@ -72,9 +67,3 @@ jobs:
72
67
with:
73
68
github_token: ${{ github.token }}
74
69
branch: ${{ github.ref_name }}
75
-
76
- - name: Git Submodule Update
77
78
- git pull --recurse-submodules
79
- git submodule update --init --recursive
80
- git submodule update --recursive --remote
0 commit comments