Skip to content

Commit 1219376

Browse files
woody-applepull[bot]
authored andcommitted
Initial stab of this workflow (#28180)
* Initial checkin * Updating
1 parent 3fa45cb commit 1219376

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
+20
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)