Skip to content

Commit 7d1af95

Browse files
committed
Use renamed env var
1 parent 2afd067 commit 7d1af95

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/deploy-prd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
4343
- run: npm install
4444

45-
- run: GENERATE_DATASHEETS=true npm run build
45+
- run: RENDER_DATASHEETS=true npm run build
4646

4747
- name: Configure AWS Credentials
4848
uses: aws-actions/configure-aws-credentials@v1

.github/workflows/deploy-stg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
4242
- run: npm install
4343

44-
- run: GENERATE_DATASHEETS=true npm run build
44+
- run: RENDER_DATASHEETS=true npm run build
4545

4646
- name: Configure AWS Credentials
4747
uses: aws-actions/configure-aws-credentials@v1

scripts/datasheet-rendering/render-datasheets.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

3-
# GENERATE_DATASHEETS is set to true by CI
4-
if [ -n "$GENERATE_DATASHEETS" ]; then
3+
# RENDER_DATASHEETS is set to true by CI
4+
if [ -n "$RENDER_DATASHEETS" ]; then
55
echo "Current system:"
66
uname -a
77
# Fix for SSL problem in phantom.js

0 commit comments

Comments
 (0)