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)