Skip to content

Commit b3e2318

Browse files
committed
build: Use the new github outputs format.
1 parent 0721010 commit b3e2318

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
run: cp index.php index.orig.php && php build/builder.php
2222
- name: Check Changes
2323
id: change
24-
run: (diff index.php index.orig.php && echo "::set-output name=changed::false") || echo "::set-output name=changed::true"
24+
run: (diff index.php index.orig.php && echo "changed=false" >> "$GITHUB_OUTPUT") || echo "changed=true" >> "$GITHUB_OUTPUT"
2525
- name: Commit & Push
2626
if: steps.change.outputs.changed == 'true'
2727
run: |
2828
git config --global user.name 'Hints Builder'
2929
git config --global user.email 'internet@limelightgaming.net'
3030
git add "index.php"
3131
git commit -m "Updated index.php"
32-
git push
32+
git push

0 commit comments

Comments
 (0)