fix(workflows): update sandbox-v2 env loading to exclude comments and empty lines
- Modified the workflow to use grep for loading the sandbox-v2 environment variables, ensuring that comments and empty lines are excluded from the environment file.
This commit is contained in:
parent
7373b0b6f7
commit
7a5c573f10
1 changed files with 1 additions and 1 deletions
2
.github/workflows/unit-test-v1.yml
vendored
2
.github/workflows/unit-test-v1.yml
vendored
|
|
@ -79,7 +79,7 @@ jobs:
|
|||
apple-private-key: ${{ secrets.APPLE_PRIVATE_KEY_USER }}
|
||||
|
||||
- name: Load sandbox-v2 env
|
||||
run: cat .github/env/sandbox-v2.env >> $GITHUB_ENV
|
||||
run: grep -vE '^\s*#|^\s*$' .github/env/sandbox-v2.env >> $GITHUB_ENV
|
||||
|
||||
- name: Setup SQLite
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue