Skip to content

Commit dc36808

Browse files
committed
reeeeeee
1 parent 015b7df commit dc36808

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v2
1616
- name: Build
17-
run: php build/builder.php
17+
run: cp index.php index.orig.php && php build/builder.php
1818
- name: Check Changes
1919
id: change
20-
run: (git diff index.php && echo "::set-output name=changed::false") || echo "::set-output name=changed::true"
20+
run: (diff index.php index.orig.php && echo "::set-output name=changed::false") || echo "::set-output name=changed::true"
2121
- name: Commit & Push
2222
if: steps.change.outputs.changed == 'true'
2323
run: |

0 commit comments

Comments
 (0)