mirror of
https://github.com/dimalo/klipper-web-control-docker.git
synced 2026-02-07 23:09:11 +01:00
89 lines
2.7 KiB
YAML
89 lines
2.7 KiB
YAML
name: Klipper Moonraker Multiarch Image CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- develop
|
|
schedule:
|
|
- cron: "42 13 * * 0"
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get current date
|
|
id: date
|
|
run: echo "::set-output name=date::$(date +'%Y%m%d-%H%M')"
|
|
|
|
- name: Prepare
|
|
id: prep
|
|
run: |
|
|
DOCKER_IMAGE=${{ secrets.DOCKER_USERNAME }}/klipper-moonraker
|
|
DATE=${{steps.date.outputs.date}}
|
|
BRANCH=${GITHUB_REF##*/}
|
|
|
|
# If this is git tag, use the tag name as a docker tag
|
|
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
|
VERSION=${GITHUB_REF#refs/tags/v}
|
|
fi
|
|
|
|
if [[ $BRANCH == develop ]]; then
|
|
# If the BRANCH is 'develop', assume that
|
|
# this is the next version of the image and also
|
|
# tag with DATE.
|
|
BASE_TAG=next
|
|
TAGS="${DOCKER_IMAGE}:${BASE_TAG},${DOCKER_IMAGE}:${DATE}-dev"
|
|
else
|
|
# If the VERSION looks like a version number, assume that
|
|
# this is the latest version of the image and also
|
|
# tag it with the VERSION, else use DATE.
|
|
BASE_TAG=latest
|
|
if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
|
|
TAGS="$TAGS,${DOCKER_IMAGE}:${BASE_TAG}"
|
|
else
|
|
TAGS="${DOCKER_IMAGE}:${BASE_TAG},${DOCKER_IMAGE}:${DATE}"
|
|
fi
|
|
|
|
fi
|
|
|
|
# Set output parameters.
|
|
echo ::set-output name=tags::${TAGS}
|
|
echo ::set-output name=docker_image::${DOCKER_IMAGE}
|
|
echo ::set-output name=base_tag::${BASE_TAG}
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@master
|
|
with:
|
|
platforms: all
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@master
|
|
|
|
- name: Login to DockerHub
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
context: .
|
|
file: ./klipper/Dockerfile
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6
|
|
push: true
|
|
tags: ${{ steps.prep.outputs.tags }}
|
|
cache-from: type=registry,ref=${{ steps.prep.outputs.docker_image }}:${{ steps.prep.outputs.base_tag }}
|
|
cache-to: type=inline
|