Skip to content

Commit dcc1dd9

Browse files
committed
fix(badge): correct logic to use string check
fixes #3 nofusscomputing/centurion_erp#209 nofusscomputing/centurion_erp#214
1 parent 0d09b7c commit dcc1dd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ jobs:
352352
353353
354354
- name: Git commit
355-
if: ${{ steps.git-add.outputs.changed }}
355+
if: ${{ steps.git-add.outputs.changed == 'true' }}
356356
shell: bash
357357
run: |
358358
echo "[Debug] PWD[${PWD}]";
@@ -367,7 +367,7 @@ jobs:
367367
368368
369369
- name: git push
370-
if: ${{ steps.git-add.outputs.changed }}
370+
if: ${{ steps.git-add.outputs.changed == 'true' }}
371371
shell: bash
372372
run: |
373373
echo "[Debug] PWD[${PWD}]";

0 commit comments

Comments
 (0)