We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fa45cb commit 1219376Copy full SHA for 1219376
.github/workflows/build-cert-bins.yaml
@@ -0,0 +1,20 @@
1
+name: Build Certification Image
2
+on:
3
+ workflow_call:
4
+jobs:
5
+ build-cert-bin:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@master
9
+ - name: Set up Docker Buildx
10
+ uses: docker/setup-buildx-action@v2
11
+ - name: Publish to Registry
12
+ uses: elgohr/Publish-Docker-Github-Action@v5
13
+ with:
14
+ name: ghcr.io/project-chip/chip-cert-bins
15
+ tags: latest
16
+ dockerfile: ./integrations/docker/images/chip-cert-bins/Dockerfile
17
+ username: ${{ github.actor }}
18
+ password: ${{ secrets.GITHUB_TOKEN }}
19
+ registry: ghcr.io
20
+ platforms: linux/amd64,linux/arm64,linux/arm
0 commit comments