From 9b60d200620f0e13172cc5527b6ff6b5ce380061 Mon Sep 17 00:00:00 2001 From: BennyThink Date: Sat, 17 Jul 2021 20:38:56 +0800 Subject: [PATCH] github action --- .github/workflows/builder.yaml | 54 ++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .github/workflows/builder.yaml diff --git a/.github/workflows/builder.yaml b/.github/workflows/builder.yaml new file mode 100644 index 0000000..d91f5e4 --- /dev/null +++ b/.github/workflows/builder.yaml @@ -0,0 +1,54 @@ +on: + push: + branches: + - 'master' + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + submodules: true + + - 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 DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Lower case + id: string + uses: ASzc/change-string-case-action@v1 + with: + string: ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }} + + - name: Build and push + uses: docker/build-push-action@v2 + with: + context: . + platforms: linux/arm,linux/amd64,linux/arm64 + push: true + tags: ${{ steps.string.outputs.lowercase }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: Move cache + run: | + rm -rf /tmp/.buildx-cache + mv /tmp/.buildx-cache-new /tmp/.buildx-cache \ No newline at end of file