-
Notifications
You must be signed in to change notification settings - Fork 4
51 lines (43 loc) · 1.25 KB
/
build.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
name: build
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: code checkout
uses: actions/checkout@v2
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: setup up qemu
uses: docker/setup-qemu-action@v1
- name: setup docker buildx
uses: docker/setup-buildx-action@v1
- name: build code server image
uses: docker/build-push-action@v2
with:
context: ./build/code-server/
push: false
tags: ndebuhr/cloud-native-workstation-code-server:latest
- name: build keycloak seeding image
uses: docker/build-push-action@v2
with:
context: ./build/initializers/
push: false
tags: ndebuhr/cloud-native-workstation-initializers:latest
- name: build jupyter image
uses: docker/build-push-action@v2
with:
context: ./build/jupyter/
push: false
tags: ndebuhr/cloud-native-workstation-jupyter:latest
- name: build pgweb image
uses: docker/build-push-action@v2
with:
context: ./build/pgweb/
push: false
tags: ndebuhr/cloud-native-workstation-pgweb:latest