forked from openDsh/dash
-
Notifications
You must be signed in to change notification settings - Fork 1
97 lines (89 loc) · 2.82 KB
/
pi.yml
File metadata and controls
97 lines (89 loc) · 2.82 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: 'pi'
on:
push:
branches:
- develop
jobs:
docker:
strategy:
fail-fast: false
max-parallel: 4
matrix:
config:
# - {
# name: "RaspberryPi3",
# baseimage: "balenalib/raspberrypi3:buster-build",
# image: "raspberrypi3",
# platform: "linux/amd64"
# }
# - {
# name: "RaspberryPi3-64",
# baseimage: "balenalib/raspberrypi3-64:buster-build",
# image: "raspberrypi3-64",
# platform: "linux/amd64"
# }
# - {
# name: "RaspberryPi",
# baseimage: "balenalib/raspberry-pi:buster-build",
# image: "raspberrypi",
# platform: "linux/amd64"
# }
- {
name: "RaspberryPi4-64",
baseimage: "balenalib/raspberrypi4-64:buster-build",
image: "raspberrypi4-64",
platform: "linux/amd64"
}
name: 'Build: ${{ matrix.config.name }}'
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Prepare
id: prep
run: |
DOCKER_IMAGE=${{ secrets.DOCKERHUB_USERNAME }}/${GITHUB_REPOSITORY#*/}
VERSION=${{ matrix.config.image }}-latest
SHORTREF=${GITHUB_SHA::8}
# If this is git tag, use the tag name as a docker tag
if [[ $GITHUB_REF == refs/tags/* ]]; then
VERSION=${GITHUB_REF#refs/tags/v}
fi
TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:${SHORTREF}"
# If the VERSION looks like a version number, assume that
# this is the most recent version of the image and also
# tag it 'latest'.
if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
TAGS="$TAGS,${DOCKER_IMAGE}:latest"
fi
# Set output parameters.
echo ::set-output name=tags::${TAGS}
echo ::set-output name=docker_image::${DOCKER_IMAGE}
# -
# name: Set up QEMU
# uses: docker/setup-qemu-action@master
# with:
# platforms: all
-
name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./Dockerfile
platforms: ${{ matrix.config.platform }}
build-args: IMAGE=${{ matrix.config.baseimage }}
push: true
tags: ${{ steps.prep.outputs.tags }}