Update themes/KamiMod digest to c104f76 #152
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: ["exampleSite"] | |
pull_request: | |
branches: ["exampleSite"] | |
jobs: | |
kamimod-post: | |
name: "Is the KamiMod post up-to-date?" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Run update-post.sh | |
run: ./update-post.sh | |
- name: Check file changes | |
run: | | |
if [ "$(git status --porcelain | grep readme)" ]; then | |
echo "::error::content/posts/kamimod/readme.md is out of sync. Please run ./update-post.sh" && exit 1 | |
fi |