-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (54 loc) · 1.54 KB
/
PublishDockerImages.yaml
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
name: Publish Docker images
on:
push:
branches:
- main
jobs:
api:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Build and push Docker image
uses: openzim/docker-publish-action@v10
with:
context: backend
image-name: openzim/nautilus-webui-api
manual-tag: dev
# SaaS service is not released
latest-on-tag: true
restrict-to: openzim/nautilus-webui
registries: ghcr.io
credentials:
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }}
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }}
repo_description: auto
repo_overview: auto
frontend:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Build and push Docker image
uses: openzim/docker-publish-action@v10
with:
context: frontend
image-name: openzim/nautilus-webui-frontend
manual-tag: dev
# SaaS service is not released
latest-on-tag: true
restrict-to: openzim/nautilus-webui
registries: ghcr.io
credentials:
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }}
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }}
repo_description: auto
repo_overview: auto
deploy:
needs: [api,frontend]
runs-on: ubuntu-24.04
steps:
- name: Restart live webapp
uses: actions-hub/kubectl@master
env:
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }}
with:
args: rollout restart deployments api-deployment frontend-deployment -n nautilus