-
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (44 loc) · 1.37 KB
/
cicd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: CI/CD to Haenu Cluster
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: hyeonwoo5342/leaven-multi:${{ github.run_number }}
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout GitOps repository
uses: actions/checkout@v3
with:
repository: dokdo2013/haenu-cluster
token: ${{ secrets.GITOPS_TOKEN }}
path: gitops
- name: Update deployment tag in GitOps repo
run: |
APP_NAME="leaven-multi"
cd gitops/apps/leaven/${APP_NAME}
sed -i "s|image: hyeonwoo5342/${APP_NAME}:.*|image: hyeonwoo5342/${APP_NAME}:${{ github.run_number }}|g" deployment.yaml
git config user.name "dokdo2013"
git config user.email "[email protected]"
git add .
git commit -m "feat(${APP_NAME}): Build and deploy new commit ${{ github.run_number }}"
git push