We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3143821 commit ee62084Copy full SHA for ee62084
.github/workflows/site-preview.yml
@@ -46,6 +46,9 @@ jobs:
46
website/node_modules
47
# An explicit key for restoring and saving the cache
48
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
49
+ - name: Install netlify CLI
50
+ run: npm install netlify-cli -g
51
+ working-directory: data
52
- run: yarn
53
working-directory: data
54
env:
@@ -54,7 +57,7 @@ jobs:
57
- run: sed -i "s|^\s*environment.*$||g" netlify.toml
55
58
56
59
# Build and deploy the data repo
- - run: npx netlify deploy --build --alias data-preview-$CI_REF_NAME_SLUG
60
+ - run: netlify deploy --build --alias data-preview-$CI_REF_NAME_SLUG
61
62
63
GITHUB_REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Use the repo specific token
0 commit comments