From 8c9c198d272964afb6172e2238eec3a6cff61f66 Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Wed, 25 May 2022 16:50:17 -0400 Subject: [PATCH] ci: add debug db container build workflow for arm64 --- .github/workflows/dev-db-arm64.yml | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/dev-db-arm64.yml diff --git a/.github/workflows/dev-db-arm64.yml b/.github/workflows/dev-db-arm64.yml new file mode 100644 index 000000000..676676e06 --- /dev/null +++ b/.github/workflows/dev-db-arm64.yml @@ -0,0 +1,35 @@ +name: Debug - Dev DB Image ARM64 + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v2 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Docker Build & Push + uses: docker/build-push-action@v3 + with: + context: . + file: docker/db.Dockerfile + platforms: linux/arm64 + push: true + tags: ghcr.io/ietf-tools/datatracker-db-arm64:latest