We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0721010 commit b3e2318Copy full SHA for b3e2318
1 file changed
.github/workflows/build.yml
@@ -21,12 +21,12 @@ jobs:
21
run: cp index.php index.orig.php && php build/builder.php
22
- name: Check Changes
23
id: change
24
- run: (diff index.php index.orig.php && echo "::set-output name=changed::false") || echo "::set-output name=changed::true"
+ run: (diff index.php index.orig.php && echo "changed=false" >> "$GITHUB_OUTPUT") || echo "changed=true" >> "$GITHUB_OUTPUT"
25
- name: Commit & Push
26
if: steps.change.outputs.changed == 'true'
27
run: |
28
git config --global user.name 'Hints Builder'
29
git config --global user.email 'internet@limelightgaming.net'
30
git add "index.php"
31
git commit -m "Updated index.php"
32
- git push
+ git push
0 commit comments