Skip to content

Commit

Permalink
Merge pull request #13 from code-review-platform-flow/FLOW-192
Browse files Browse the repository at this point in the history
feat: github actions 버킷 프로젝트명 변경
  • Loading branch information
steamedEggMaster authored Nov 28, 2024
2 parents b7f400a + 8671f50 commit 3af188d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build and push Docker image
run: |
docker buildx build --push \
--tag asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-dev/flow-admin-main-dev:${{ github.sha }} .
--tag asia-northeast3-docker.pkg.dev/gcuflow/flow-dev/flow-admin-main-dev:${{ github.sha }} .
deploy:
runs-on: ubuntu-latest
Expand All @@ -54,13 +54,13 @@ jobs:

- name: Update manifest
run: |
sed -i "s|image: .*|image: asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-dev/flow-admin-main-dev:${{ github.sha }}|" manifests/flow-admin-main-dev/deployment.yaml
sed -i "s|image: .*|image: asia-northeast3-docker.pkg.dev/gcuflow/flow-dev/flow-admin-main-dev:${{ github.sha }}|" manifests/flow-admin-main-dev/deployment.yaml
- name: Commit and push changes
working-directory: manifests
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git add .
git commit -m "Update image to asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-dev/flow-admin-main-dev:${{ github.sha }}"
git commit -m "Update image to asia-northeast3-docker.pkg.dev/gcuflow/flow-dev/flow-admin-main-dev:${{ github.sha }}"
git push
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd-prd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build and push Docker image
run: |
docker buildx build --push \
--tag asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-prd/flow-admin-main-prd:${{ github.sha }} .
--tag asia-northeast3-docker.pkg.dev/gcuflow/flow-prd/flow-admin-main-prd:${{ github.sha }} .
deploy:
runs-on: ubuntu-latest
Expand All @@ -54,13 +54,13 @@ jobs:

- name: Update manifest
run: |
sed -i "s|image: .*|image: asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-prd/flow-admin-main-prd:${{ github.sha }}|" manifests/flow-admin-main-prd/deployment.yaml
sed -i "s|image: .*|image: asia-northeast3-docker.pkg.dev/gcuflow/flow-prd/flow-admin-main-prd:${{ github.sha }}|" manifests/flow-admin-main-prd/deployment.yaml
- name: Commit and push changes
working-directory: manifests
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git add .
git commit -m "Update image to asia-northeast3-docker.pkg.dev/code-review-platform-flow/flow-prd/flow-admin-main-prd:${{ github.sha }}"
git commit -m "Update image to asia-northeast3-docker.pkg.dev/gcuflow/flow-prd/flow-admin-main-prd:${{ github.sha }}"
git push

0 comments on commit 3af188d

Please sign in to comment.