-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (50 loc) · 1.68 KB
/
dev-calendar-noti.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
54
55
56
57
58
59
name: CI/CD to Unithon Cluster
on:
push:
branches: [ dev ]
paths:
- 'cron-calendar-noti/**'
- '.github/workflows/**'
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: ./cron-calendar-noti
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/unithon-calendar-noti-dev:${{ github.run_number }}
file: ./cron-calendar-noti/Dockerfile
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: |
IMAGE_NAME="unithon-calendar-noti-dev"
APP_NAME="backend-cronjob-dev"
FILE_NAME="cron-calendar-noti"
cd gitops/apps/unithon/${APP_NAME}
sed -i "s|image: ${{ secrets.DOCKERHUB_USERNAME }}/${IMAGE_NAME}:.*|image: ${{ secrets.DOCKERHUB_USERNAME }}/${IMAGE_NAME}:${{ github.run_number }}|g" ${FILE_NAME}.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