-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (41 loc) · 1.03 KB
/
dependencies.yaml
File metadata and controls
43 lines (41 loc) · 1.03 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
name: dependabot-merger
on:
pull_request:
types: labeled
jobs:
build:
if: ${{ github.event.label.name == 'python' }}
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Build v1
id: docker_build_imagev1
uses: docker/build-push-action@v2
with:
tags: ollypom/mysfits:cicdv1
context: ./api/.
file: ./api/Dockerfile.v1
-
name: Build v2
id: docker_build_imagev2
uses: docker/build-push-action@v2
with:
tags: ollypom/mysfits:cicdv2
context: ./api/.
file: ./api/Dockerfile.v2
-
name: Build v3
id: docker_build_imagev3
uses: docker/build-push-action@v2
with:
tags: ollypom/mysfits:cicdv3
context: ./api/.
file: ./api/Dockerfile.v3