I'm unable to pull .env.development.local in github actions #62886
Unanswered
sriharikappera
asked this question in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hi
I'm unable to pull env.development.local in github actions
when tried with .env.production.local and .env.preview.local it working fine
why i'm unable to pull env.development.local
below is my YML code
name: GitHub Actions Vercel Preview Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
pull_request:
branches:
- qa
push:
branches:
- qa
jobs:
Deploy-Preview:
runs-on: cloud-mart
steps:
- name: Set variables based on branch
id: vars
run: |
if [[ "${{github.base_ref}}" == "qa" || "${{github.ref}}" == "refs/heads/qa" ]]; then
echo ::set-output name=vervel_token::${{ secrets.VERCEL_TOKEN }}
echo "::set-output name=phase::staging"
fi
Beta Was this translation helpful? Give feedback.
All reactions