-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (47 loc) · 1.41 KB
/
pr.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
52
53
54
name: Build Docker images
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
#version: [latest, 10, 12, 14, 15, 16, 18]
#distro: [ buster, bullseye, alpine ]
version: [latest, 16, 18]
distro: [ alpine ]
env:
repo: "govpf/node"
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Check file existence
id: check_files
uses: andstor/file-existence-action@v3
with:
files: ${{ matrix.version }}/${{ matrix.distro }}/Dockerfile
- name: Compute tags
if: steps.check_files.outputs.files_exists == 'true'
env:
repo: ${{ env.repo }}
version: ${{ matrix.version }}
distro: ${{ matrix.distro }}
run: |
TAGS="${repo}:${version}-${distro}"
if [[ $distro == 'bullseye' ]]; then
TAGS+=",${repo}:${version}"
fi
echo 'docker_tags<<EOF' >> $GITHUB_ENV
echo "$TAGS" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Build and push
if: steps.check_files.outputs.files_exists == 'true'
uses: docker/[email protected]
with:
context: .
file: ./${{ matrix.version }}/${{ matrix.distro }}/Dockerfile
platforms: linux/amd64
pull: true
push: false
tags: ${{ env.docker_tags }}