From 0fe85b97607f74dfe3c13cedfc254210ef01ec5b Mon Sep 17 00:00:00 2001 From: Ajay Date: Wed, 4 May 2022 01:51:38 -0400 Subject: [PATCH] Auto build container --- .github/workflows/docker-build.yml | 50 ++++++++++++++++++++++++++++++ .github/workflows/sb-container.yml | 15 +++++++++ 2 files changed, 65 insertions(+) create mode 100644 .github/workflows/docker-build.yml create mode 100644 .github/workflows/sb-container.yml diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml new file mode 100644 index 0000000..eda5429 --- /dev/null +++ b/.github/workflows/docker-build.yml @@ -0,0 +1,50 @@ +# Based on https://github.com/ajayyy/sb-mirror/blob/main/.github/workflows/docker-build.yml +name: multi-build-docker +on: + workflow_call: + inputs: + name: + required: true + type: string + username: + required: true + type: string + secrets: + GH_TOKEN: + required: true + +jobs: + build_container: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Docker meta + id: meta + uses: docker/metadata-action@v3 + with: + images: | + ghcr.io/${{ inputs.username }}/${{ inputs.name }} + tags: | + type-raw,value=alpine + flavor: | + latest=true + - name: Login to GHCR + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GH_TOKEN }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + with: + platforms: arm,arm64 + - name: Set up buildx + uses: docker/setup-buildx-action@v1 + - name: push + uses: docker/build-push-action@v2 + with: + context: ./build/${{ inputs.name }} + platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 + push: true + tags: ${{ steps.meta.outputs.tags }} \ No newline at end of file diff --git a/.github/workflows/sb-container.yml b/.github/workflows/sb-container.yml new file mode 100644 index 0000000..8aae0ba --- /dev/null +++ b/.github/workflows/sb-container.yml @@ -0,0 +1,15 @@ +name: sb-runner +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + build: + uses: ./.github/workflows/docker-build.yml + with: + name: "sb-container" + username: "ajayyy" + secrets: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file