Skip to content

Commit d14cfb0

Browse files
new workflow file for secure signals client side example
1 parent fc8c53d commit d14cfb0

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Release Secure Signal Examples Docker Image for UID2 Client Side
2+
run-name: ${{ inputs.release_type == 'Snapshot' && 'Publish Pre-release' || format('Release {0}', inputs.release_type)}} Secure Signal Examples Docker Image for UID2 Client Side by @${{ github.actor }}
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
release_type:
7+
type: choice
8+
description: The type of release
9+
options:
10+
- Major
11+
- Minor
12+
- Patch
13+
- Snapshot
14+
required: true
15+
16+
jobs:
17+
incrementVersionNumber:
18+
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-increase-version-number.yaml@v2
19+
with:
20+
release_type: ${{ inputs.release_type }}
21+
working_dir: examples/google-secure-signals-integration/client_side
22+
secrets: inherit
23+
24+
publishForSecureSignalsExampleClientSide:
25+
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-publish-to-docker-versioned.yaml@v3
26+
needs: incrementVersionNumber
27+
with:
28+
new_version: ${{ needs.incrementVersionNumber.outputs.new_version }}
29+
image_tag: ${{ needs.incrementVersionNumber.outputs.image_tag }}
30+
release_type: ${{ inputs.release_type }}
31+
docker_file: examples/google-secure-signals-integration/client_side/Dockerfile
32+
docker_context: examples/google-secure-signals-integration/client_side
33+
docker_image_name: iabtechlab/uid2-secure-signals-example-client-side
34+
docker_registry: ghcr.io
35+
force_release: no
36+
secrets: inherit

0 commit comments

Comments
 (0)