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:
Max 2026-03-12 20:38:00 +08:00
parent 7373b0b6f7
commit 7a5c573f10

View file

@ -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: |