-
Notifications
You must be signed in to change notification settings - Fork 4
42 lines (40 loc) · 1.33 KB
/
development.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
name: Build and Deploy to Development
on:
workflow_dispatch:
push:
branches: [development]
jobs:
build-docker-image:
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v2
with:
ref: "development"
- name: Log in to container registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@v2
with:
push: true
tags: |
ghcr.io/${{ github.repository }}:${{ github.sha }}
ghcr.io/${{ github.repository }}:development
deploy-docker-image:
needs: build-docker-image
runs-on: ubuntu-latest
steps:
- name: Initialize doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log into K8s cluster
run: doctl kubernetes cluster kubeconfig save --expiry-seconds 600 tcs
- name: Deploy image to cluster
run: kubectl set image deployment/devapi devapi=ghcr.io/${{ github.repository }}:${{ github.sha }} --record -n dev-zab-web-stack
- name: Verify deployment
run: kubectl rollout status deployment/devapi -n dev-zab-web-stack