2022-01-14 21:54:59 +01:00
|
|
|
name: Build docker s6-overlay rootfs image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-09-13 23:22:32 +02:00
|
|
|
-
|
|
|
|
name: checkout code
|
2022-09-13 23:06:33 +02:00
|
|
|
uses: actions/checkout@v3
|
2022-09-13 23:22:32 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2022-09-13 23:06:30 +02:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2022-09-13 23:22:32 +02:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
2022-09-13 23:08:31 +02:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2022-01-14 21:54:59 +01:00
|
|
|
with:
|
|
|
|
config-inline: |
|
|
|
|
[worker.oci]
|
|
|
|
max-parallelism = 16
|
2022-09-13 23:22:32 +02:00
|
|
|
-
|
|
|
|
name: Login to DockerHub
|
2022-09-13 23:06:38 +02:00
|
|
|
uses: docker/login-action@v2
|
2022-01-14 21:54:59 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2022-09-13 23:22:32 +02:00
|
|
|
-
|
2022-09-13 23:23:11 +02:00
|
|
|
name: Build and push
|
2022-10-12 12:51:50 +02:00
|
|
|
uses: docker/bake-action@v2.3.0
|
2022-09-13 23:23:11 +02:00
|
|
|
with:
|
|
|
|
files: build/docker-bake.hcl
|
2023-04-11 12:18:35 +02:00
|
|
|
push: true
|