Skip to content

Commit b3eea6d

Browse files
removed dev/main branches checks in condition during deployment; updated comment with the same (#630)
1 parent 845a37d commit b3eea6d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,9 @@ jobs:
140140
name: 🚀 Deploy
141141
runs-on: ubuntu-22.04
142142
needs: [lint, typecheck, vitest, playwright]
143-
# only build/deploy main branch on pushes
143+
# only build/deploy branches on pushes
144144
if:
145-
${{ (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') &&
146-
github.event_name == 'push' }}
145+
${{ github.event_name == 'push' }}
147146

148147
steps:
149148
- name: ⬇️ Checkout repo

0 commit comments

Comments
 (0)