2022-12-11 18:46:30 -05:00
|
|
|
# SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
name: Docker
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ develop ]
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.job }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-push:
|
|
|
|
runs-on: ubuntu-latest
|
2023-02-08 11:16:05 -05:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
component: [ 'backend', 'frontend' ]
|
2022-12-11 18:46:30 -05:00
|
|
|
steps:
|
2023-09-04 09:40:10 -04:00
|
|
|
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
2022-12-11 18:46:30 -05:00
|
|
|
|
2023-02-08 11:16:05 -05:00
|
|
|
- name: Generate Docker metadata for ${{ matrix.component }}
|
|
|
|
id: meta-data
|
2023-06-13 07:29:16 -04:00
|
|
|
uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175 # v4.6.0
|
2022-12-11 18:46:30 -05:00
|
|
|
with:
|
2023-02-08 11:16:05 -05:00
|
|
|
images: ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}/${{ matrix.component }}
|
2022-12-11 18:46:30 -05:00
|
|
|
tags: |
|
|
|
|
type=ref,event=branch
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
2023-06-07 13:59:17 -04:00
|
|
|
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2.2.0
|
2022-12-11 18:46:30 -05:00
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2023-08-28 04:40:58 -04:00
|
|
|
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2.10.0
|
2022-12-11 18:46:30 -05:00
|
|
|
|
|
|
|
- name: Login to GHCR
|
2023-06-07 09:16:29 -04:00
|
|
|
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0
|
2022-12-11 18:46:30 -05:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2023-02-08 11:16:05 -05:00
|
|
|
- name: Build and push
|
2023-09-08 11:40:56 -04:00
|
|
|
uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1
|
2022-12-11 18:46:30 -05:00
|
|
|
with:
|
|
|
|
push: true
|
2023-02-08 11:16:05 -05:00
|
|
|
file: ${{ matrix.component}}/docker/Dockerfile
|
|
|
|
tags: ${{ steps.meta-data.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta-data.outputs.labels }}
|
2022-12-11 18:46:30 -05:00
|
|
|
cache-from: type=gha
|
2023-02-18 09:22:21 -05:00
|
|
|
cache-to: type=gha
|
2022-12-11 18:46:30 -05:00
|
|
|
context: .
|
2023-02-07 15:50:25 -05:00
|
|
|
build-args: |
|
|
|
|
BUILD_VERSION=${{ github.event.head_commit.id }}
|
|
|
|
TURBO_TOKEN=${{ secrets.TURBO_TOKEN }}
|
|
|
|
TURBO_API=${{ vars.TURBO_API }}
|
|
|
|
TURBO_TEAM=${{ vars.TURBO_TEAM }}
|