-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.yaml
More file actions
48 lines (39 loc) · 1.09 KB
/
deploy.yaml
File metadata and controls
48 lines (39 loc) · 1.09 KB
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
name: CI/CD — Build & Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
name: Build, Push, and Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker registry
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build & push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
${{ secrets.DOCKER_USERNAME }}/wisecow:latest
# optionally multi‑arch:
# platforms: linux/amd64,linux/arm64
- name: Set up kubectl
uses: azure/setup-kubectl@v3
with:
version: 'latest'
- name: Configure kubeconfig
run: |
echo "${{ secrets.KUBECONFIG_BASE64 }}" | base64 -d > ./kubeconfig
export KUBECONFIG=$PWD/kubeconfig
- name: Deploy to Kubernetes
run: |
kubectl apply -f k8s/