-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (36 loc) · 1022 Bytes
/
build.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
name: Build Training and Publish
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Build Latest Skeleton Version
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
push: false
tags: |
quay.io/acend/prometheus-training-spring-boot-example:skeleton-pr-${{ github.event.pull_request.number }}
-
name: Build Latest Solution Version
uses: docker/build-push-action@v3
with:
context: ./solution
file: ./solution/Dockerfile
push: false
tags: |
quay.io/acend/prometheus-training-spring-boot-example:pr-${{ github.event.pull_request.number }}