Skip to content

Commit 2659608

Browse files
committed
Fix deploy condition on tag
Signed-off-by: Riddhesh Sanghvi <[email protected]>
1 parent be15780 commit 2659608

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test_and_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
name: Deploy Phar
174174
if: |
175175
github.repository_owner == 'EasyEngine' &&
176-
(github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master')
176+
(github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
177177
runs-on: ubuntu-latest
178178
needs: [build, test]
179179

0 commit comments

Comments
 (0)