1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- name: Docker
- permissions: {}
- on:
- push:
- branches:
- - 'master'
- schedule:
- - cron: '0 3 * * *'
- workflow_call:
- jobs:
- generate-matrix:
- name: Generate matrix for Docker build
- runs-on: ubuntu-latest
- outputs:
- matrix: ${{ steps.set-matrix.outputs.matrix }}
- steps:
- - name: Checkout
- uses: actions/checkout@v4
- with:
- ref: master
- - name: Set matrix for build
- id: set-matrix
- run: |
- # FIXME: https://github.com/actions/checkout/issues/290
- git fetch --force --tags
- one="{ \"build-peertube\": true, \"file\": \"./support/docker/production/Dockerfile.bookworm\", \"ref\": \"develop\", \"tags\": \"chocobozzz/peertube:develop-bookworm\" }"
- two="{ \"build-peertube\": true, \"file\": \"./support/docker/production/Dockerfile.bookworm\", \"ref\": \"master\", \"tags\": \"chocobozzz/peertube:production-bookworm,chocobozzz/peertube:$(git describe --abbrev=0)-bookworm\" }"
- three="{ \"build-peertube\": false, \"file\": \"./support/docker/production/Dockerfile.nginx\", \"ref\": \"master\", \"tags\": \"chocobozzz/peertube-webserver:latest\" }"
- matrix="[$one,$two,$three]"
- echo "matrix={\"include\":$matrix}" >> $GITHUB_OUTPUT
- docker:
- runs-on: ubuntu-latest
- needs: generate-matrix
- strategy:
- matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
- fail-fast: false
- name: ${{ matrix.tags }}
- steps:
- -
- name: Checkout develop
- uses: actions/checkout@v4
- with:
- ref: ${{ matrix.ref }}
- - uses: './.github/actions/reusable-prepare-peertube-build'
- if: ${{ matrix.build-peertube }}
- with:
- node-version: '18.x'
- - name: Build
- if: ${{ matrix.build-peertube }}
- run: npm run build
- -
- name: Set up QEMU
- uses: docker/setup-qemu-action@v3
- -
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3
- -
- name: Login to DockerHub
- uses: docker/login-action@v3
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- -
- name: Docker build
- uses: docker/build-push-action@v6
- with:
- context: '.'
- platforms: linux/amd64,linux/arm64
- push: true
- file: ${{ matrix.file }}
- tags: ${{ matrix.tags }}
- build-args: ALREADY_BUILT=1
|