We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--env
vercel-args
-----BEGIN PRIVATE KEY----- …
- uses: amondnet/vercel-action@v25 with: vercel-token: ${{ secrets.VERCEL_TOKEN }} … vercel-args: >- --env MY_VAR=${{ secrets.VAR_WITH_SPACES }}
Error! The specified file or directory "PRIVATE" does not exist.
Wrapping with " still fails, so I'm assuming this is an issue in vercel-action.
"
- uses: amondnet/vercel-action@v25 with: vercel-token: ${{ secrets.VERCEL_TOKEN }} … vercel-args: >- --env MY_VAR="${{ secrets.VAR_WITH_SPACES }}"
The text was updated successfully, but these errors were encountered:
Fixed by #237 and merged. Until the release you can use a commit pin as follows in your workflow:
- uses: amondnet/vercel-action@8433ae13f35aa62d68184a8fc369ce6b0143b0a3 with: vercel-token: ${{ secrets.VERCEL_TOKEN }} … vercel-args: >- --env "MY_VAR=${{ secrets.VAR_WITH_SPACES }}"
(Wrap the full "NAME=VALUE" in quotes).
"NAME=VALUE"
Sorry, something went wrong.
No branches or pull requests
-----BEGIN PRIVATE KEY----- …
)Error! The specified file or directory "PRIVATE" does not exist.
Wrapping with
"
still fails, so I'm assuming this is an issue in vercel-action.The text was updated successfully, but these errors were encountered: