You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: resolve CI failure in mtls sample test due to GitHub Actions context expansion
The 'Test run a workflow (cloud)' step was failing with 'Error: EACCES: permission denied, mkdir /certs' because ${{ runner.temp }} was not expanding properly in multi-line YAML blocks.
Changes:
- Convert multi-line run block to single-line format
- Remove redundant create-certs-dir.js call (certs already created in prior step)
- Add comment explaining why single-line format is required
This ensures proper expansion of GitHub Actions context variables and prevents the '/certs' permission error.
0 commit comments