Skip to content

Commit 5354fbe

Browse files
committed
Change integration tests
1 parent e3f6999 commit 5354fbe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/oidc-integration-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
- name: Generate unique OIDC provider name
3535
id: gen-oidc
3636
shell: bash
37-
run: echo "oidc_provider_name=oidc-integration-${{ matrix.cli-version }}-${{ matrix.os }}-$(date +%s)" >> "$GITHUB_OUTPUT"
37+
run: |
38+
safe_version="${{ matrix.cli-version }}" && safe_version="${safe_version//./-}"
39+
echo "oidc_provider_name=oidc-integration-${safe_version}-${{ matrix.os }}-$(date +%s)" >> "$GITHUB_OUTPUT"
3840
3941
- name: Create OpenID Connect integration
4042
shell: bash

0 commit comments

Comments
 (0)