Skip to content

Commit 4feaa45

Browse files
authored
Merge pull request #34095 from storybookjs/yann/fix-sandbox-generation-script
Build: Fix Nx cloud in sandbox generation
2 parents 61b0fcb + 577a872 commit 4feaa45

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/generate-sandboxes.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Generate and publish sandboxes
22

33
on:
44
schedule:
5-
- cron: "2 2 */1 * *"
5+
- cron: '2 2 */1 * *'
66
workflow_dispatch:
77
# To test fixes on push rather than wait for the scheduling, do the following:
88
# 1. Uncomment the lines below and add your branch.
@@ -14,8 +14,9 @@ on:
1414
# 4. 👉 DON'T FORGET TO UNDO THE STEPS BEFORE YOU MERGE YOUR CHANGES!
1515

1616
env:
17-
YARN_ENABLE_IMMUTABLE_INSTALLS: "false"
18-
CLEANUP_SANDBOX_NODE_MODULES: "true"
17+
YARN_ENABLE_IMMUTABLE_INSTALLS: 'false'
18+
CLEANUP_SANDBOX_NODE_MODULES: 'true'
19+
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
1920

2021
defaults:
2122
run:
@@ -50,7 +51,7 @@ jobs:
5051

5152
- uses: actions/setup-node@v4
5253
with:
53-
node-version-file: ".nvmrc"
54+
node-version-file: '.nvmrc'
5455

5556
- name: Setup git user
5657
run: |
@@ -119,7 +120,7 @@ jobs:
119120

120121
- uses: actions/setup-node@v4
121122
with:
122-
node-version-file: ".nvmrc"
123+
node-version-file: '.nvmrc'
123124

124125
- name: Setup git user
125126
run: |

0 commit comments

Comments
 (0)