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 015b7df commit dc36808Copy full SHA for dc36808
.github/workflows/build.yml
@@ -14,10 +14,10 @@ jobs:
14
- name: Checkout
15
uses: actions/checkout@v2
16
- name: Build
17
- run: php build/builder.php
+ run: cp index.php index.orig.php && php build/builder.php
18
- name: Check Changes
19
id: change
20
- run: (git diff index.php && echo "::set-output name=changed::false") || echo "::set-output name=changed::true"
+ run: (diff index.php index.orig.php && echo "::set-output name=changed::false") || echo "::set-output name=changed::true"
21
- name: Commit & Push
22
if: steps.change.outputs.changed == 'true'
23
run: |
0 commit comments