Skip to content
Merged
Changes from 1 commit
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
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -320,10 +320,9 @@ jobs:

- name: Test run a workflow (cloud)
if: matrix.server == 'cloud'
run: |
# The required environment variables must be present for releases (this must be run from the official repo)
node scripts/create-certs-dir.js ${{ steps.tmp-dir.outputs.dir }}/certs
node scripts/test-example.js --work-dir "${{ runner.temp }}/example"
# The required environment variables must be present for releases (this must be run from the official repo)
# Note: Using single-line format to ensure proper ${{ runner.temp }} expansion (multi-line blocks can fail to expand GitHub Actions contexts)
run: node scripts/test-example.js --work-dir "${{ runner.temp }}/example"
shell: bash
env:
# These env vars are used by the hello-world-mtls sample
Expand Down
Loading