Deploy #8
Workflow file for this run
This file contains hidden or 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
name: Deploy | |
on: | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Get sources | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- name: Restore npm cache | |
uses: actions/cache@v4 | |
with: | |
path: ./node_modules | |
key: ${{ runner.os }}-node-modules | |
- name: Install dependencies (npm ci) | |
run: npm ci --no-audit --no-fund | |
- name: Build themes | |
run: npm run build-themes | |
- name: Install Internal Package | |
uses: DevExpress/github-actions/install-internal-package@main | |
- name: Build | |
run: npm run build -- --configuration=production --base-href https://devexpress.github.io/devextreme-angular-template/ --extract-licenses=false | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@ba1486788b0490a235422264426c45848eac35c6 | |
with: | |
branch: gh-pages | |
folder: dist/DevExtreme-app/browser | |
target-folder: . |