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.
2 parents 4f1bb94 + f1f3523 commit fdec463Copy full SHA for fdec463
.github/workflows/test_and_build.yml
@@ -172,7 +172,9 @@ jobs:
172
173
deploy: #-----------------------------------------------------------------------
174
name: Deploy Phar
175
- if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master'
+ if: |
176
+ github.repository_owner == 'EasyEngine' &&
177
+ (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master')
178
runs-on: ubuntu-latest
179
needs: [build, test]
180
@@ -209,6 +211,7 @@ jobs:
209
211
run: |
210
212
md5sum phar/$FILENAME | cut -d ' ' -f 1 > phar/$FILENAME.md5
213
sha512sum phar/$FILENAME | cut -d ' ' -f 1 > phar/$FILENAME.sha512
214
+
215
- name: Commit files
216
217
git config --local user.email "[email protected]"
0 commit comments