File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 6565 push : true
6666 tags : ${{ steps.meta.outputs.tags }}
6767 labels : ${{ steps.meta.outputs.labels }}
68+ build-client-side :
69+ runs-on : ubuntu-latest
70+ permissions :
71+ contents : read
72+ packages : write
73+ steps :
74+ - uses : actions/checkout@v4
75+ - name : Log in to the Container registry
76+ uses : docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
77+ with :
78+ registry : ${{ env.REGISTRY }}
79+ username : ${{ github.actor }}
80+ password : ${{ secrets.GITHUB_TOKEN }}
81+ - name : Extract metadata (tags, labels) for Docker
82+ id : meta
83+ uses : docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
84+ with :
85+ images : ${{ env.REGISTRY }}/iabtechlab/uid2-secure-signals-example-client-side
86+ tags : |
87+ type=sha,format=short
88+ type=raw,value=latest
89+ - name : Build and push Docker client_side image
90+ uses : docker/build-push-action@v5
91+ with :
92+ context : examples/google-secure-signals-integration/client_side
93+ push : true
94+ tags : ${{ steps.meta.outputs.tags }}
95+ labels : ${{ steps.meta.outputs.labels }}
You can’t perform that action at this time.
0 commit comments