Skip to content

Commit c5417b7

Browse files
committed
CI: Fix the condition check in the Check Links workflow
1 parent 141a9d4 commit c5417b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
7474

7575
- name: Create Issue From File
76-
if: env.lychee_exit_code != 0
76+
if: ${{ steps.lychee.outputs.exit_code }} != 0
7777
run: |
7878
cd repository/
7979
title="Link Checker Report on ${CURRENT_DATE}"

0 commit comments

Comments
 (0)