Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/dotnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
docker-image-artifact-name:
type: string
required: false
# Additional dynamic config values to append to docker.yaml (YAML format)
dynamic-config-values:
type: string
required: false

permissions:
contents: read
Expand Down Expand Up @@ -106,6 +110,14 @@ jobs:
if: ${{ inputs.version-is-repo-ref }}
working-directory: ./sdk-dotnet

- name: Append custom dynamic config
if: ${{ inputs.dynamic-config-values }}
env:
DYNAMIC_CONFIG_VALUES: ${{ inputs.dynamic-config-values }}
run: |
echo "" >> ./dockerfiles/dynamicconfig/docker.yaml
echo "$DYNAMIC_CONFIG_VALUES" >> ./dockerfiles/dynamicconfig/docker.yaml

- name: Start containerized server and dependencies
id: start-server
if: inputs.docker-image-artifact-name
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
docker-image-artifact-name:
type: string
required: false
# Additional dynamic config values to append to docker.yaml (YAML format)
dynamic-config-values:
type: string
required: false

permissions:
contents: read
Expand Down Expand Up @@ -83,6 +87,14 @@ jobs:
with:
go-version: '^1.21'

- name: Append custom dynamic config
if: ${{ inputs.dynamic-config-values }}
env:
DYNAMIC_CONFIG_VALUES: ${{ inputs.dynamic-config-values }}
run: |
echo "" >> ./dockerfiles/dynamicconfig/docker.yaml
echo "$DYNAMIC_CONFIG_VALUES" >> ./dockerfiles/dynamicconfig/docker.yaml

- name: Start containerized server and dependencies
id: start-server
if: inputs.docker-image-artifact-name
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
docker-image-artifact-name:
type: string
required: false
# Additional dynamic config values to append to docker.yaml (YAML format)
dynamic-config-values:
type: string
required: false

permissions:
contents: read
Expand Down Expand Up @@ -89,6 +93,14 @@ jobs:
with:
go-version: '^1.21'

- name: Append custom dynamic config
if: ${{ inputs.dynamic-config-values }}
env:
DYNAMIC_CONFIG_VALUES: ${{ inputs.dynamic-config-values }}
run: |
echo "" >> ./dockerfiles/dynamicconfig/docker.yaml
echo "$DYNAMIC_CONFIG_VALUES" >> ./dockerfiles/dynamicconfig/docker.yaml

- name: Start containerized server and dependencies
id: start-server
if: inputs.docker-image-artifact-name
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
docker-image-artifact-name:
type: string
required: false
# Additional dynamic config values to append to docker.yaml (YAML format)
dynamic-config-values:
type: string
required: false

permissions:
contents: read
Expand Down Expand Up @@ -108,6 +112,14 @@ jobs:
working-directory: sdk-python
# ============================================================

- name: Append custom dynamic config
if: ${{ inputs.dynamic-config-values }}
env:
DYNAMIC_CONFIG_VALUES: ${{ inputs.dynamic-config-values }}
run: |
echo "" >> ./dockerfiles/dynamicconfig/docker.yaml
echo "$DYNAMIC_CONFIG_VALUES" >> ./dockerfiles/dynamicconfig/docker.yaml

- name: Start containerized server and dependencies
id: start-server
if: inputs.docker-image-artifact-name
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/typescript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
docker-image-artifact-name:
type: string
required: false
# Additional dynamic config values to append to docker.yaml (YAML format)
dynamic-config-values:
type: string
required: false

permissions:
contents: read
Expand Down Expand Up @@ -118,6 +122,14 @@ jobs:
env:
BUILD_CORE_RELEASE: true

- name: Append custom dynamic config
if: ${{ inputs.dynamic-config-values }}
env:
DYNAMIC_CONFIG_VALUES: ${{ inputs.dynamic-config-values }}
run: |
echo "" >> ./dockerfiles/dynamicconfig/docker.yaml
echo "$DYNAMIC_CONFIG_VALUES" >> ./dockerfiles/dynamicconfig/docker.yaml

- name: Start containerized server and dependencies
id: start-server
if: inputs.docker-image-artifact-name
Expand Down
Loading