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
14 changes: 11 additions & 3 deletions .github/workflows/demo-dir.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,22 @@ jobs:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup dirctl
uses: ./.github/actions/setup-dirctl
- name: Build dirctl from branch source
id: build-dirctl
uses: ./.github/actions/build-dirctl
with:
version: ${{ inputs.image_version }}
go_version: "1.26.1"

# - name: Setup dirctl
# uses: ./.github/actions/setup-dirctl
# with:
# version: ${{ inputs.image_version }}

- name: Fetch Directory OIDC token
id: oidc-dir
uses: ./.github/actions/fetch-oidc-token
with:
audience: dir

- name: Export OIDC environment
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/import-records.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ jobs:
- name: Fetch Directory OIDC token (import)
id: oidc-dir-import
uses: ./.github/actions/fetch-oidc-token
with:
audience: dir

- name: Install mcp-scanner
if: ${{ env.SCANNER_ENABLED == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/oidc-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
id: oidc
uses: ./.github/actions/fetch-oidc-token
with:
audience: dir-dev
audience: dir

- name: Run dirctl search with GitHub OIDC token
env:
Expand Down
Loading