From 7fc54bbc0725148b0f96c6161210f56920aa3886 Mon Sep 17 00:00:00 2001 From: "Hyunmin Woo (Hanul)" Date: Sat, 6 Jan 2024 21:29:42 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=91=E2=80=8D=F0=9F=92=BB=20=EC=B9=9C?= =?UTF-8?q?=EA=B5=AC=EA=B8=B0=EB=8A=A5=20=EB=B0=B0=ED=8F=AC=20=ED=83=9C?= =?UTF-8?q?=EA=B7=B8=20friends-=20->=20friends-react-native-=20=EB=A1=9C?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD=20(#109)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-friends-react-native-dev.yml | 2 +- .github/workflows/deploy-friends-react-native-prod.yml | 2 +- apps/friends-react-native/scripts/deploy.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-friends-react-native-dev.yml b/.github/workflows/deploy-friends-react-native-dev.yml index 992f96a..fddf95e 100644 --- a/.github/workflows/deploy-friends-react-native-dev.yml +++ b/.github/workflows/deploy-friends-react-native-dev.yml @@ -3,7 +3,7 @@ name: deploy-friends-react-native-dev on: push: tags: - - friends-dev-* + - friends-react-native-dev-* jobs: deploy: diff --git a/.github/workflows/deploy-friends-react-native-prod.yml b/.github/workflows/deploy-friends-react-native-prod.yml index b8ee139..01ef18a 100644 --- a/.github/workflows/deploy-friends-react-native-prod.yml +++ b/.github/workflows/deploy-friends-react-native-prod.yml @@ -3,7 +3,7 @@ name: deploy-friends-react-native-prod on: push: tags: - - friends-prod-* + - friends-react-native-prod-* jobs: deploy: diff --git a/apps/friends-react-native/scripts/deploy.sh b/apps/friends-react-native/scripts/deploy.sh index 4c6c941..b84708b 100755 --- a/apps/friends-react-native/scripts/deploy.sh +++ b/apps/friends-react-native/scripts/deploy.sh @@ -3,7 +3,7 @@ env=$1 today=$(date +%y.%m.%d) -tagFormat="friends-${env}-${today}-" +tagFormat="friends-react-native-${env}-${today}-" git fetch --all --tags tagCount=$(git tag -l | grep -c $tagFormat)