Skip to content

Merge pull request #19 from sumitwebkul/ari_datewise_beakdown #15

Merge pull request #19 from sumitwebkul/ari_datewise_beakdown

Merge pull request #19 from sumitwebkul/ari_datewise_beakdown #15

Workflow file for this run

name: Deploy documentation to Github Pages
# only from master branch
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: 16.20.0
- name: NPM install 📦
uses: bahmutov/npm-install@v1
- name: Build site 🏗
run: npm run docs:build --no-cache
# https://github.com/marketplace/actions/github-pages-action
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/.vuepress/dist
cname: devdocs.qloapps.com