forked from cncf/landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Making this build compatible with a weekly update (cncf#1696)
* test with a weekly update * use a landscapeapp based build * oops * one more fix * build * ensure that we can build it for a latest update * final check
- Loading branch information
1 parent
0aaf2f3
commit 935528a
Showing
3 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[build] | ||
base = "netlify" | ||
publish = "dist" | ||
ignore = "false" | ||
command = "bash netlify.sh" | ||
environment = { RUBY_VERSION = "2.6.2" } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
. ~/.nvm/nvm.sh | ||
npm pack interactive-landscape@latest | ||
tar xzf interactive* | ||
cd package | ||
cp -r ../node_modules . | ||
nvm install `cat .nvmrc` | ||
nvm use `cat .nvmrc` | ||
npm install -g npm | ||
npm install | ||
cp -r node_modules/* ../node_modules | ||
PROJECT_PATH=../.. npm run build |