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
6 changes: 5 additions & 1 deletion .github/workflows/changelog_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ jobs:
with:
version: ${{ needs.prepare-release.outputs.version }}
emergency: false
secrets: inherit
# Explicitly pass secrets (instead of secrets: inherit) because reusable workflows
# called from push events may not reliably inherit secrets automatically.
secrets:
OPEN_CAPTURE_SDK_PRS_APP_ID: ${{ secrets.OPEN_CAPTURE_SDK_PRS_APP_ID }}
OPEN_CAPTURE_SDK_PRS_PRIVATE_KEY: ${{ secrets.OPEN_CAPTURE_SDK_PRS_PRIVATE_KEY }}

no-release:
name: No release (tag exists)
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/update_sdk_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
uses: ./.github/workflows/release_gh.yaml
with:
version: ${{ inputs.version }}
secrets: inherit
# Explicitly pass secrets to ensure they're available when called from other workflows
secrets:
OPEN_CAPTURE_SDK_PRS_APP_ID: ${{ secrets.OPEN_CAPTURE_SDK_PRS_APP_ID }}
OPEN_CAPTURE_SDK_PRS_PRIVATE_KEY: ${{ secrets.OPEN_CAPTURE_SDK_PRS_PRIVATE_KEY }}
public-release:
permissions:
id-token: write # required to use OIDC authentication
Expand Down
Loading