Skip to content

Commit

Permalink
raname server-only to server-side
Browse files Browse the repository at this point in the history
  • Loading branch information
ssundahlTTD committed Dec 23, 2024
1 parent c72b4d6 commit 55ecbce
Show file tree
Hide file tree
Showing 23 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-secure-signal-examples.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Release Secure Signal Examples Docker Image
run-name: ${{ github.action_ref == 'refs/head/main' && 'Release' || 'Publish Pre-release' }} Secure Signal Examples Docker Image by @${{ github.actor }}
run-name: ${{ github.action_ref == 'refs/head/main' && 'Release' || 'Publish Pre-release' }} Secure Signal Examples Docker Image by @${{ github.actor }}

on:
workflow_dispatch:
Expand All @@ -8,7 +8,7 @@ env:
REGISTRY: ghcr.io

jobs:
build-server-only:
build-server-side:
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -29,10 +29,10 @@ jobs:
tags: |
type=sha,format=short
type=raw,value=latest
- name: Build and push Docker server_only image
- name: Build and push Docker server_side image
uses: docker/build-push-action@v5
with:
context: examples/google-secure-signals-integration/server_only
context: examples/google-secure-signals-integration/server_side
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
name: Release Secure Signal Examples Docker Image for Server Only
run-name: ${{ inputs.release_type == 'Snapshot' && 'Publish Pre-release' || format('Release {0}', inputs.release_type)}} Secure Signal Examples Docker Image for Server Only by @${{ github.actor }}
run-name: ${{ inputs.release_type == 'Snapshot' && 'Publish Pre-release' || format('Release {0}', inputs.release_type)}} Secure Signal Examples Docker Image for Server Only by @${{ github.actor }}
on:
workflow_dispatch:
inputs:
release_type:
type: choice
description: The type of release
options:
- Major
- Minor
- Patch
- Snapshot
- Major
- Minor
- Patch
- Snapshot
required: true

jobs:
incrementVersionNumber:
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-increase-version-number.yaml@v2
with:
release_type: ${{ inputs.release_type }}
working_dir: examples/google-secure-signals-integration/server_only
working_dir: examples/google-secure-signals-integration/server_side
secrets: inherit

publishForSecureSignalsExampleSrvOnly:
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-publish-to-docker-versioned.yaml@v3
needs: incrementVersionNumber
with:
with:
new_version: ${{ needs.incrementVersionNumber.outputs.new_version }}
image_tag: ${{ needs.incrementVersionNumber.outputs.image_tag }}
release_type: ${{ inputs.release_type }}
docker_file: examples/google-secure-signals-integration/server_only/Dockerfile
docker_context: examples/google-secure-signals-integration/server_only
docker_file: examples/google-secure-signals-integration/server_side/Dockerfile
docker_context: examples/google-secure-signals-integration/server_side
docker_image_name: iabtechlab/uid2-secure-signals-example-srvonly
docker_registry: ghcr.io
secrets: inherit
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Server-Only UID2 Secure Signals Integration Example
# Server-Side UID2 Secure Signals Integration Example

This example demonstrates how a content publisher who is working with [Google Interactive Media Ads(IMA) SDKs](https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side) can use [Google Secure Signal](https://support.google.com/admanager/answer/10488752) to share UID2 directly with bidders, in a server-only implementation of UID2.
This example demonstrates how a content publisher who is working with [Google Interactive Media Ads(IMA) SDKs](https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side) can use [Google Secure Signal](https://support.google.com/admanager/answer/10488752) to share UID2 directly with bidders, in a server-side implementation of UID2.

For an example application using the [UID2 SDK for JavaScript](https://unifiedid.com/docs/sdks/sdk-ref-javascript), see [Server-Side Integration Example, UID2 JavaScript SDK](../with_sdk_v3/README.md).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1>Server-Side UID2 Integration Example</h1>
<a href="https://unifiedid.com/docs/guides/integration-google-ss#server-side-integration"
>Server-Side Integration</a
>. [<a
href="https://github.com/IABTechLab/uid2-web-integrations/tree/main/examples/google-secure-signals-integration/server_only"
href="https://github.com/IABTechLab/uid2-web-integrations/tree/main/examples/google-secure-signals-integration/server_side"
>Source Code</a
>]
</p>
Expand Down
Loading

0 comments on commit 55ecbce

Please sign in to comment.