Skip to content

Commit 6ee73c6

Browse files
committed
frontend deployment happens only on tag publishing
1 parent 701d803 commit 6ee73c6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/deploy-frontend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Deploy Frontend
22

33
on:
44
push:
5-
branches:
6-
- master
5+
tags:
6+
- 'prd-*'
77
paths:
88
- ".github/workflows/deploy-frontend.yml"
99
- "frontend/**"

.github/workflows/deploy-staging-frontend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Deploy Staging Frontend
22

33
on:
44
push:
5-
branches:
6-
- staging
5+
tags:
6+
- 'stg-*'
77
paths:
88
- ".github/workflows/deploy-staging-frontend.yml"
99
- "frontend/**"

0 commit comments

Comments
 (0)