Skip to content

Commit ae1a38e

Browse files
Merge pull request #49 from code-review-platform-flow/FLOW-187
feat: ci-cd bucket 변경
2 parents 8c1fe11 + 0ec9285 commit ae1a38e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci-cd-dev.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Build and push Docker image
3636
run: |
3737
docker buildx build --push \
38-
--tag asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-dev/flow-api-gateway-dev:${{ github.sha }} .
38+
--tag asia-northeast3-docker.pkg.dev/gcuflow/flow-dev/flow-api-gateway-dev:${{ github.sha }} .
3939
4040
deploy:
4141
runs-on: ubuntu-latest
@@ -54,13 +54,13 @@ jobs:
5454

5555
- name: Update manifest
5656
run: |
57-
sed -i "s|image: .*|image: asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-dev/flow-api-gateway-dev:${{ github.sha }}|" manifests/flow-api-gateway-dev/deployment.yaml
57+
sed -i "s|image: .*|image: asia-northeast3-docker.pkg.dev/gcuflow/flow-dev/flow-api-gateway-dev:${{ github.sha }}|" manifests/flow-api-gateway-dev/deployment.yaml
5858
5959
- name: Commit and push changes
6060
working-directory: manifests
6161
run: |
6262
git config --global user.name 'github-actions'
6363
git config --global user.email '[email protected]'
6464
git add .
65-
git commit -m "Update image to asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-dev/flow-api-gateway-dev:${{ github.sha }}"
65+
git commit -m "Update image to asia-northeast3-docker.pkg.dev/gcuflow/flow-dev/flow-api-gateway-dev:${{ github.sha }}"
6666
git push

.github/workflows/ci-cd-prd.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Build and push Docker image
3636
run: |
3737
docker buildx build --push \
38-
--tag asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-prd/flow-api-gateway-prd:${{ github.sha }} .
38+
--tag asia-northeast3-docker.pkg.dev/gcuflow/flow-prd/flow-api-gateway-prd:${{ github.sha }} .
3939
4040
deploy:
4141
runs-on: ubuntu-latest
@@ -54,13 +54,13 @@ jobs:
5454

5555
- name: Update manifest
5656
run: |
57-
sed -i "s|image: .*|image: asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-prd/flow-api-gateway-prd:${{ github.sha }}|" manifests/flow-api-gateway-prd/deployment.yaml
57+
sed -i "s|image: .*|image: asia-northeast3-docker.pkg.dev/gcuflow/flow-prd/flow-api-gateway-prd:${{ github.sha }}|" manifests/flow-api-gateway-prd/deployment.yaml
5858
5959
- name: Commit and push changes
6060
working-directory: manifests
6161
run: |
6262
git config --global user.name 'github-actions'
6363
git config --global user.email '[email protected]'
6464
git add .
65-
git commit -m "Update image to asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-prd/flow-api-gateway-prd:${{ github.sha }}"
65+
git commit -m "Update image to asia-northeast3-docker.pkg.dev/gcuflow/flow-prd/flow-api-gateway-prd:${{ github.sha }}"
6666
git push

0 commit comments

Comments
 (0)