ci: fix emojis again

This commit is contained in:
2 * r + 2 * t
2025-06-23 15:10:49 +10:00
parent 71ad240ef2
commit 27cf05ed10
+4 -1
View File
@@ -12,6 +12,9 @@ jobs:
update: update:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
contents: write
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -30,7 +33,7 @@ jobs:
- name: Check for changes - name: Check for changes
id: check id: check
run: echo ::set-output name=modified::$(test -n "$(git status --porcelain)" && echo 'true' || echo 'false') run: echo modified=$(test -n "$(git status --porcelain)" && echo 'true' || echo 'false') >> $GITHUB_OUTPUT
- name: Commit and push changes - name: Commit and push changes
if: steps.check.outputs.modified == 'true' if: steps.check.outputs.modified == 'true'