Skip to content

Commit 9123327

Browse files
committed
fix(ci): Fix workflow condition check for GPG key import step
1 parent 3a86297 commit 9123327

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/update-hashes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
fi
105105
106106
- name: Import GPG key
107-
if: steps.changes.outputs.changed == 'true'
107+
if: steps.changes.outputs.has_changes == 'true'
108108
uses: crazy-max/ghaction-import-gpg@v6
109109
with:
110110
gpg_private_key: ${{ secrets.BOT_GPG_PRIVATE_KEY }}
@@ -115,7 +115,7 @@ jobs:
115115
git_tag_gpgsign: true
116116

117117
- name: Setup CI Bot
118-
if: steps.changes.outputs.changed == 'true'
118+
if: steps.changes.outputs.has_changes == 'true'
119119
run: |
120120
git config --global user.name "The OpenList Bot"
121121
git config --global user.email "bot@openlist.team"

0 commit comments

Comments
 (0)