mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
68af4cd5ba
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3.3.0 to 4.0.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v3.3.0...v4.0.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
101 lines
3.4 KiB
YAML
101 lines
3.4 KiB
YAML
name: Build and Push Docker Images
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build_and_push:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
# Prevent a failure in one image from stopping the other builds
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- context: "server"
|
|
image: "immich-server"
|
|
- context: "web"
|
|
image: "immich-web"
|
|
- context: "machine-learning"
|
|
image: "immich-machine-learning"
|
|
- context: "nginx"
|
|
image: "immich-proxy"
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2.1.0
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2.4.0
|
|
# Workaround to fix error:
|
|
# failed to push: failed to copy: io: read/write on closed pipe
|
|
# See https://github.com/docker/build-push-action/issues/761
|
|
with:
|
|
driver-opts: |
|
|
image=moby/buildkit:v0.10.6
|
|
|
|
- name: Login to Docker Hub
|
|
# Only push to Docker Hub when making a release
|
|
if: ${{ github.event_name == 'release' }}
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v2
|
|
# Skip when PR from a fork
|
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Generate docker image tags
|
|
id: metadata
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
flavor: |
|
|
# Disable latest tag
|
|
latest=false
|
|
images: |
|
|
name=ghcr.io/${{ github.repository_owner }}/${{matrix.image}}
|
|
name=altran1502/${{matrix.image}},enable=${{ github.event_name == 'release' }}
|
|
tags: |
|
|
# Tag with branch name
|
|
type=ref,event=branch
|
|
# Tag with pr-number
|
|
type=ref,event=pr
|
|
# Tag with git tag on release
|
|
type=ref,event=tag
|
|
type=raw,value=release,enable=${{ github.event_name == 'release' }}
|
|
|
|
- name: Determine build cache output
|
|
id: cache-target
|
|
run: |
|
|
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
|
# Essentially just ignore the cache output (PR can't write to registry cache)
|
|
echo "cache-to=type=local,dest=/tmp/discard,ignore-error=true" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "cache-to=type=registry,mode=max,ref=ghcr.io/${{ github.repository_owner }}/immich-build-cache:${{ matrix.image }}" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Build and push image
|
|
uses: docker/build-push-action@v4.0.0
|
|
with:
|
|
context: ${{ matrix.context }}
|
|
platforms: linux/arm/v7,linux/amd64,linux/arm64
|
|
# Skip pushing when PR from a fork
|
|
push: ${{ !github.event.pull_request.head.repo.fork }}
|
|
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/immich-build-cache:${{matrix.image}}
|
|
cache-to: ${{ steps.cache-target.outputs.cache-to }}
|
|
tags: ${{ steps.metadata.outputs.tags }}
|