2021-11-30 16:00:59 +01:00
|
|
|
name: Docker
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
schedule:
|
|
|
|
- cron: '0 3 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
generate-matrix:
|
|
|
|
name: Generate matrix for Docker build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-02-06 07:34:58 +01:00
|
|
|
uses: actions/checkout@v4
|
2021-11-30 16:00:59 +01:00
|
|
|
with:
|
|
|
|
ref: master
|
|
|
|
- name: Set matrix for build
|
|
|
|
id: set-matrix
|
|
|
|
run: |
|
|
|
|
# FIXME: https://github.com/actions/checkout/issues/290
|
|
|
|
git fetch --force --tags
|
|
|
|
|
2023-07-28 19:10:26 +02:00
|
|
|
one="{ \"file\": \"./support/docker/production/Dockerfile.bookworm\", \"ref\": \"develop\", \"tags\": \"chocobozzz/peertube:develop-bookworm\" }"
|
|
|
|
two="{ \"file\": \"./support/docker/production/Dockerfile.bookworm\", \"ref\": \"master\", \"tags\": \"chocobozzz/peertube:production-bookworm,chocobozzz/peertube:$(git describe --abbrev=0)-bookworm\" }"
|
2023-03-27 09:00:16 +02:00
|
|
|
three="{ \"file\": \"./support/docker/production/Dockerfile.nginx\", \"ref\": \"master\", \"tags\": \"chocobozzz/peertube-webserver:latest\" }"
|
2021-11-30 16:00:59 +01:00
|
|
|
|
2023-03-27 09:00:16 +02:00
|
|
|
matrix="[$one,$two,$three]"
|
2022-11-02 08:32:57 +01:00
|
|
|
echo "matrix={\"include\":$matrix}" >> $GITHUB_OUTPUT
|
2021-11-30 16:00:59 +01:00
|
|
|
|
|
|
|
docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
needs: generate-matrix
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
|
|
|
|
fail-fast: false
|
|
|
|
|
2022-01-03 14:42:53 +01:00
|
|
|
name: ${{ matrix.tags }}
|
|
|
|
|
2021-11-30 16:00:59 +01:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2022-10-31 09:24:31 +01:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2021-11-30 16:00:59 +01:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
2022-10-31 09:24:31 +01:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2021-11-30 16:00:59 +01:00
|
|
|
-
|
|
|
|
name: Login to DockerHub
|
2022-10-31 09:24:31 +01:00
|
|
|
uses: docker/login-action@v2
|
2021-11-30 16:00:59 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
-
|
|
|
|
name: Checkout develop
|
2024-02-06 07:34:58 +01:00
|
|
|
uses: actions/checkout@v4
|
2021-11-30 16:00:59 +01:00
|
|
|
with:
|
|
|
|
ref: ${{ matrix.ref }}
|
|
|
|
-
|
|
|
|
name: Docker build
|
2022-10-31 09:24:31 +01:00
|
|
|
uses: docker/build-push-action@v3
|
2021-11-30 16:00:59 +01:00
|
|
|
with:
|
|
|
|
context: '.'
|
2023-03-27 09:00:16 +02:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-11-30 16:00:59 +01:00
|
|
|
push: true
|
|
|
|
file: ${{ matrix.file }}
|
|
|
|
tags: ${{ matrix.tags }}
|