Skip to content

Commit

Permalink
chore: try to fix CD
Browse files Browse the repository at this point in the history
  • Loading branch information
dtopuzov committed May 14, 2024
1 parent 46c47f7 commit e050008
Showing 1 changed file with 5 additions and 30 deletions.
35 changes: 5 additions & 30 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
NODE_OPTIONS: --max_old_space_size=6144

jobs:
general-examples:
build:
runs-on: ubuntu-latest

permissions:
Expand Down Expand Up @@ -42,46 +42,21 @@ jobs:
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]"

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:
node-version: "18"

- name: Check out repository
uses: actions/checkout@v4

- name: Build
- name: Build Node18 Examples
run: |
chmod +x ./examples-standalone/bin/build-gh-pages
./examples-standalone/bin/build-gh-pages
env:
KENDO_UI_LICENSE: ${{ secrets.KENDO_UI_LICENSE }}

- name: Copy Node18 Dist
run: cp -r ./examples-standalone/dist ./examples/dist

- name: Deploy to GH Pages
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down

0 comments on commit e050008

Please sign in to comment.