Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent netlify cli from pulling env variables #2529

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: npm install netlify-cli -g

- name: Build using Netlify
run: netlify build --context deploy-preview
run: netlify build --context deploy-preview --offline
env:
NETLIFY_SITE_ID: ${{ vars.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: npm install netlify-cli -g

- name: Build using Netlify
run: netlify build --context deploy-preview
run: netlify build --context deploy-preview --offline
working-directory: site/gatsby-site
env:
INSTRUMENT: true
Expand Down
5 changes: 4 additions & 1 deletion site/gatsby-site/github-netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@
# package = "/plugins/netlify-plugin-process-notifications"

[build.processing.html]
pretty_urls = false
pretty_urls = false

[context.deploy-preview]
publish = "public/"
5 changes: 4 additions & 1 deletion site/gatsby-site/tests-netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
package = "@netlify/plugin-gatsby"

[build.processing.html]
pretty_urls = false
pretty_urls = false

[context.deploy-preview]
publish = "public/"
Loading