-
Notifications
You must be signed in to change notification settings - Fork 217
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
Showing
44 changed files
with
78 additions
and
43 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 |
---|---|---|
|
@@ -5,16 +5,13 @@ on: | |
push: | ||
branches: | ||
- master | ||
|
||
defaults: | ||
run: | ||
working-directory: ./examples | ||
- fix-cd | ||
|
||
env: | ||
NODE_OPTIONS: --max_old_space_size=6144 | ||
|
||
jobs: | ||
build: | ||
general-examples: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
|
@@ -32,29 +29,63 @@ jobs: | |
export-secrets-to-environment: false | ||
|
||
- name: Use NodeJS v14 | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '14' | ||
node-version: "14" | ||
|
||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install modules | ||
run: npm ci | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build | ||
working-directory: ./examples | ||
run: ./bin/build-gh-pages | ||
env: | ||
KENDO_UI_LICENSE: ${{ secrets.KENDO_UI_LICENSE }} | ||
|
||
- name: Deploy to GH Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
# - name: Deploy to GH Pages | ||
# uses: peaceiris/actions-gh-pages@v3 | ||
# with: | ||
# github_token: ${{ steps.import-secrets.outputs.GH_TOKEN }} | ||
# publish_dir: ./examples/dist | ||
# user_name: "kendo-bot" | ||
# user_email: "[email protected]" | ||
|
||
standalone-examples-node18: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
id-token: write # Required by Akeyless | ||
contents: read | ||
packages: read | ||
|
||
steps: | ||
- name: Import Secrets | ||
id: import-secrets | ||
uses: LanceMcCarthy/akeyless-action@v3 | ||
with: | ||
access-id: ${{ secrets.GH_AKEYLESS_ACCESS_ID }} | ||
static-secrets: '{ "/WebComponents/prod/tokens/GH_TOKEN": "GH_TOKEN" }' | ||
export-secrets-to-environment: false | ||
|
||
- name: Use NodeJS v18 | ||
uses: actions/setup-node@v4 | ||
with: | ||
github_token: ${{ steps.import-secrets.outputs.GH_TOKEN }} | ||
publish_dir: ./examples/dist | ||
user_name: 'kendo-bot' | ||
user_email: '[email protected]' | ||
node-version: "18" | ||
|
||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Cleanup | ||
run: git clean -xdf | ||
- name: Build | ||
run: | | ||
chmod +x ./examples-standalone/bin/build-gh-pages | ||
./examples-standalone/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: ${{ steps.import-secrets.outputs.GH_TOKEN }} | ||
# publish_dir: ./examples/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,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Builds example projects and deploys them to GH Pages | ||
STANDALONE_PROJECTS=(finance-portfolio grid-charts-integration coffee-warehouse grid-live-data spreadsheet-app) | ||
|
||
set -e | ||
|
||
# Standalone Projects | ||
for PROJECT in "${STANDALONE_PROJECTS[@]}" | ||
do | ||
pushd ./examples-standalone/${PROJECT} > /dev/null | ||
|
||
echo Building ${PROJECT} | ||
npm ci | ||
rm -rf dist | ||
npx ng build --configuration production --base-href | ||
mv dist/${PROJECT} ../../examples-standalone/dist | ||
|
||
popd > /dev/null | ||
done | ||
|
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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