-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (25 loc) · 866 Bytes
/
images-build.yaml
File metadata and controls
31 lines (25 loc) · 866 Bytes
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
name: Build images
# Verifies whether the build of the images is valid. It does not publish the
# image to a registry. It's triggered by new commits and a daily schedule for
# the default branch. If any of the jobs fail for new commits they're not
# allowed to be merged into the default branch. If it starts failing because of
# changes to dependencies of the build process, it must be fixed before new
# features are merged to ensure integrity.
on:
pull_request:
push:
schedule:
- cron: "30 4 * * *"
jobs:
build-standalone:
name: Standalone images
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: docker-container
- name: Build images
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64