Skip to content

ci(demo): change build configuration for new custom domain #269

ci(demo): change build configuration for new custom domain

ci(demo): change build configuration for new custom domain #269

Workflow file for this run

name: Deploy
on:
pull_request:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js and Cache
uses: ./.github/actions/nodejs
- name: Build demo
run: npx nx build-gh-pages
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
branch: gh-pages
folder: dist/demo/browser
silent: false
clean: true
concurrency:
group: deploy-${{ github.head_ref }}
cancel-in-progress: true