-
Notifications
You must be signed in to change notification settings - Fork 54
50 lines (47 loc) · 1.36 KB
/
admin_boundaries.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
name: Build admin boundaries Docker image
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: hadolint/[email protected]
with:
dockerfile: kuwala/pipelines/admin-boundaries/dockerfile
build:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
# This is a separate action that sets up buildx runner
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
# So now you can use Actions' own caching!
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
# And make it available for the builds
- name: Build admin boundaries and push
uses: docker/build-push-action@v2
with:
context: kuwala
file: kuwala/pipelines/admin-boundaries/dockerfile
push: false
tags: kuwala/admin_boundaries:${{ github.sha }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new