From 52e65fad314b421878330517e7ffa4ef57c80559 Mon Sep 17 00:00:00 2001 From: LRGEX <128044603+LRGEX@users.noreply.github.com> Date: Mon, 13 Nov 2023 14:28:45 +0300 Subject: [PATCH] Create docker-image.yml --- .github/workflows/docker-image.yml | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..5a2dee9 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,47 @@ +name: ci + +on: + push: + branches: + - "main" + paths-ignore: + - '**/reference.txt' + - '**/testfile' + +jobs: + docker: + runs-on: debian:11 + steps: + - + name: Checkout + uses: actions/checkout@v3 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - + name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Cache Docker layers + uses: actions/cache@v2 + with: + path: /tmp/.buildx-cache + key: ${{ runner.os }}-buildx-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-buildx- + - + name: Build and push + uses: docker/build-push-action@v4 + with: + context: . + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache + platforms: linux/amd64,linux/arm64,linux/arm/v7 + push: true + tags: lrgex/klipper:latest