Skip to content

Create LICENSE

Create LICENSE #38

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
permissions:
contents: write
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install angular-cli-ghpages
run: npm install angular-cli-ghpages --save-dev
- name: Build Library
run: npm run build core
- name: Build Docs
run: npm run build docs -- --base-href="/angularui/"
- name: Add .nojekyll file
run: touch dist/docs/browser/.nojekyll
- name: Deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx angular-cli-ghpages --name="Mohammad Javed's Bot" [email protected] --dir=dist/docs/browser --no-silent