From 2e6016016458da9d7a5c2566895a85bde59c854c Mon Sep 17 00:00:00 2001 From: Aikufurr <51518624+Aikufurr@users.noreply.github.com> Date: Sat, 6 Apr 2024 21:43:21 +0100 Subject: [PATCH] Docker ARM64/AMD64 image workflow --- .github/workflows/main.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..3e60990c --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,35 @@ +name: Deploy Production +on: + workflow_dispatch: +jobs: + build-and-push-docker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - 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: Login to Docker Hub + uses: docker/login-action@v1 + with: + registry: ${{ secrets.DOCKER_REGISTRY }} + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v2 + with: + context: . + file: ./Dockerfile + push: true + tags: ${{ secrets.DOCKER_REGISTRY }}/freika/dawarich:latest,${{ secrets.DOCKER_REGISTRY }}/freika/dawarich:${{ github.run_number }} + platforms: linux/amd64,linux/arm64/v8 + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache