Skip to content

Commit

Permalink
Actually run the update action if the timestamp changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Dec 20, 2023
1 parent b05a48e commit 2797855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-indices.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
OLDSTAMP=$(cat indices/modified)
node scripts/update.js -d indices
NEWSTAMP=$(cat indices/modified)
CHANGED=$(($NEWSTAMP == $OLDSTAMP))
CHANGED=$(($NEWSTAMP != $OLDSTAMP))
echo "modified=CHANGED" >> "$GITHUB_OUTPUT"
- name: Publishing files
Expand Down

0 comments on commit 2797855

Please sign in to comment.