-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (34 loc) · 1.16 KB
/
deploy-problems.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
name: Build and push Problems
on:
push:
branches:
- 'main'
paths:
- 'apps/problems/**'
- 'apps/boilerplate-generator/**'
- 'docker/problems/**'
- '.github/workflows/deploy-problems.yml'
jobs:
Deploy-sweeper:
name: Builds and pushes to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@v3
- name: Copy Docker image to root
run: cp ./docker/problems/Dockerfile .
- name: Build Docker Image
run: docker build --build-arg DATABASE_URL=${{ secrets.DATABASE_URL }} -t vishal022/algoearth-problems:latest .
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push to Docker Hub
run: docker push vishal022/algoearth-problems:latest
- name: Setup Kubectl
uses: azure/k8s-set-context@v1
with:
kubeconfig: ${{ secrets.KUBE_CONFIG }}
- name: ReDeploy the Problems
run: kubectl rollout restart deployment/add-problems