Skip to content

Commit 0f71bf6

Browse files
committed
1 parent a07f82a commit 0f71bf6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/deploy_dev.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,13 @@ jobs:
2727
- name: Install dependencies
2828
run: npm install
2929
- name: Set DEPLOY_ENV environment variable
30-
run: echo DEPLOY_ENV=DEV >> $GITHUB_ENV
30+
run: echo DEPLOY_ENV=${{ vars.DEV_DEPLOY_ENV }} >> $GITHUB_ENV
31+
- name: Echo DEV_NODE_ENV environment variable
32+
run: echo ${{ vars.DEV_NODE_ENV }}
3133
- name: Build
3234
run: npm run build
3335
env:
34-
NODE_ENV: ${{ env.DEV_NODE_ENV }}
36+
NODE_ENV: ${{ vars.DEV_NODE_ENV }}
3537

3638
# Deploy to Cloudflare Pages
3739
- name: Publish to Cloudflare Pages

0 commit comments

Comments
 (0)