From 9614689f25c825a785f8219a97349ed4b593121d Mon Sep 17 00:00:00 2001 From: Justin Wood Date: Fri, 21 Jul 2023 12:50:59 -0700 Subject: [PATCH] Initial stab of this workflow (#28180) * Initial checkin * Updating --- .github/workflows/build-cert-bins.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build-cert-bins.yaml diff --git a/.github/workflows/build-cert-bins.yaml b/.github/workflows/build-cert-bins.yaml new file mode 100644 index 00000000000000..344099aab7397d --- /dev/null +++ b/.github/workflows/build-cert-bins.yaml @@ -0,0 +1,20 @@ +name: Build Certification Image +on: + workflow_call: +jobs: + build-cert-bin: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Publish to Registry + uses: elgohr/Publish-Docker-Github-Action@v5 + with: + name: ghcr.io/project-chip/chip-cert-bins + tags: latest + dockerfile: ./integrations/docker/images/chip-cert-bins/Dockerfile + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + registry: ghcr.io + platforms: linux/amd64,linux/arm64,linux/arm