1
Fork 0
photoview/.github/workflows/build.yml

126 lines
4.1 KiB
YAML
Raw Normal View History

name: Docker builds
2020-08-09 20:32:02 +02:00
on:
schedule:
- cron: "0 10 * * *" # everyday at 10am
pull_request:
branches: master
push:
branches: master
tags:
- v*
jobs:
build:
name: Build Docker Image
runs-on: ubuntu-20.04
strategy:
matrix:
target_platform:
- "linux/amd64"
- "linux/arm/v6"
- "linux/arm/v7"
- "linux/arm64"
2020-08-09 20:32:02 +02:00
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache Docker layers
uses: actions/cache@v2
id: cache
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ secrets.CACHE_KEY }}-${{ matrix.target_platform }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-${{ secrets.CACHE_KEY }}-${{ matrix.target_platform }}-
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: ${{ matrix.target_platform }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
2020-08-09 20:32:02 +02:00
- name: Prepare
id: prepare
run: |
DOCKER_USERNAME=viktorstrate
DOCKER_IMAGE=viktorstrate/photoview
DOCKER_PLATFORMS=${{ matrix.target_platform }}
2020-08-09 20:32:02 +02:00
VERSION=edge
if [[ $GITHUB_REF == refs/tags/* ]]; then
VERSION=${GITHUB_REF#refs/tags/v}
fi
if [ "${{ github.event_name }}" = "schedule" ]; then
VERSION=nightly
fi
2020-08-15 15:41:05 +02:00
TAGS="--tag ${DOCKER_IMAGE}:${VERSION}"
if [[ $VERSION =~ ^(([0-9]{1,3})\.[0-9]{1,3})\.[0-9]{1,3}$ ]]; then
VERSION_MINOR=${BASH_REMATCH[1]}
VERSION_MAJOR=${BASH_REMATCH[2]}
TAGS="$TAGS --tag ${DOCKER_IMAGE}:latest --tag ${DOCKER_IMAGE}:${VERSION_MINOR} --tag ${DOCKER_IMAGE}:${VERSION_MAJOR}"
2020-08-09 20:32:02 +02:00
fi
echo ::set-output name=docker_username::${DOCKER_USERNAME}
echo ::set-output name=docker_image::${DOCKER_IMAGE}
echo ::set-output name=version::${VERSION}
echo ::set-output name=buildx_args::--platform ${DOCKER_PLATFORMS} \
--progress=plain \
--cache-from "type=local,src=/tmp/.buildx-cache" \
--cache-to "type=local,dest=/tmp/.buildx-cache" \
2020-08-09 20:32:02 +02:00
--build-arg VERSION=${VERSION} \
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
--build-arg VCS_REF=${GITHUB_SHA::8} \
${TAGS} --file Dockerfile .
- name: Docker Build
2020-08-09 20:32:02 +02:00
run: |
mkdir -p /tmp/docker-image-${{ matrix.target_platform }}
docker buildx build --output "type=oci,dest=/tmp/docker-image-${{ matrix.target_platform }}/${{ github.sha }}.oci" ${{ steps.prepare.outputs.buildx_args }}
- name: Save Image
uses: actions/upload-artifact@v2
with:
name: docker-image-${{ matrix.target_platform }}
2021-03-28 21:32:22 +02:00
path: /tmp/docker-image-${{ matrix.target_platform }}/${{ github.sha }}.oci
push:
name: Push Docker Images
runs-on: ubuntu-20.04
if: github.event_name != 'pull_request' && github.repository == 'photoview/photoview'
needs: [build]
steps:
- name: Load Images
uses: actions/download-artifact@v2
with:
path: /docker-images
- name: Print Artifacts
run: ls -lah /docker-images
#- name: Docker Login
# env:
# DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
# run: |
# echo "${DOCKER_PASSWORD}" | docker login --username "${{ steps.prepare.outputs.docker_username }}" --password-stdin
#- name: Push to Docker Hub
# run: |
# docker buildx build --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args }}
# - name: Docker Check Manifest
2020-12-17 22:51:43 +01:00
# if: always() && github.event_name != 'pull_request' && github.repository == 'photoview/photoview'
# run: |
# docker run --rm mplatform/mquery ${{ steps.prepare.outputs.docker_image }}:${{ steps.prepare.outputs.version }}
2020-08-09 20:32:02 +02:00
- name: Clear
run: |
rm -f ${HOME}/.docker/config.json