Skip to content

Commit 884f7b0

Browse files
added client side to secure signals examples workflow file
1 parent 57677ff commit 884f7b0

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/publish-secure-signal-examples.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,31 @@ jobs:
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 }}

0 commit comments

Comments
 (0)