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
|
2023-09-05 12:18:36 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-09-13 23:22:32 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2023-09-12 12:55:01 +02:00
|
|
|
uses: docker/setup-qemu-action@v3
|
2022-09-13 23:22:32 +02:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
2023-09-12 12:55:04 +02:00
|
|
|
uses: docker/setup-buildx-action@v3
|
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
|
2023-09-12 12:54:59 +02:00
|
|
|
uses: docker/login-action@v3
|
2022-01-14 21:54:59 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2023-04-11 12:43:59 +02:00
|
|
|
|
|
|
|
- name: Login to GitHub Container Registry
|
2023-09-12 12:54:59 +02:00
|
|
|
uses: docker/login-action@v3
|
2023-04-11 12:43:59 +02:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{github.actor}}
|
|
|
|
password: ${{secrets.PAT_TOKEN}}
|
2022-09-13 23:22:32 +02:00
|
|
|
-
|
2022-09-13 23:23:11 +02:00
|
|
|
name: Build and push
|
2023-11-17 11:32:18 +01:00
|
|
|
uses: docker/bake-action@v4.1.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
|