-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cea6d16
commit b75677b
Showing
5 changed files
with
56 additions
and
7 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
|
||
defaults: | ||
run: | ||
working-directory: ./examples | ||
working-directory: ./live | ||
|
||
env: | ||
NODE_OPTIONS: --max_old_space_size=6144 | ||
|
@@ -27,14 +27,14 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Build | ||
run: ../bin/build-gh-pages | ||
run: ./bin/build-gh-pages | ||
env: | ||
KENDO_UI_LICENSE: ${{ secrets.KENDO_UI_LICENSE }} | ||
|
||
- name: Deploy to GH Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ github.token }} | ||
publish_dir: ./examples/dist | ||
publish_dir: ./live/dist | ||
user_name: 'kendo-bot' | ||
user_email: '[email protected]' |
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
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,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>KendoReact - Sample Applications</title> | ||
<link rel="stylesheet" type="text/css" href="styles.css"> | ||
</head> | ||
<body> | ||
<h1>Error</h1> | ||
|
||
<p> | ||
Resource not found. | ||
<p> | ||
</body> | ||
</html> |
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,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>KendoReact - Sample Applications</title> | ||
<link rel="stylesheet" type="text/css" href="styles.css"> | ||
</head> | ||
<body> | ||
<h1>KendoReact - Sample Applications</h1> | ||
<p> | ||
This GitHub pages site hosts runnable versions of the following sample applications: | ||
<p> | ||
<ul> | ||
<li><a href="kendo-react-finance-portfolio/">Finance Portfolio Application</a></li> | ||
<li><a href="react-coffee-warehouse/">Coffee Warehouse Dashboard Application</a></li> | ||
<li><a href="react-admin-dashboard/">Admin Dashboard Application</a></li> | ||
<li><a href="kendo-react-homepage-demo/">Github Issues Data Grid</a></li> | ||
<li><a href="kendo-react-file-manager/">File Manager Template Application</a></li> | ||
<li><a href="react-grid-live-data/">Grid Live Data Application</a></li> | ||
</ul> | ||
<p> | ||
To access the source code of all sample applications, go to the | ||
<a href="https://github.com/telerik/kendo-react/">telerik/kendo-react GitHub</a> | ||
repository. | ||
</p> | ||
</body> | ||
</html> |
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,4 @@ | ||
html { | ||
font-family: sans-serif; | ||
line-height: 1.15; | ||
} |