Skip to content

Update dependabot.yml #186

Update dependabot.yml

Update dependabot.yml #186

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '16.x'
- name: Install Deps
if: steps.node-modules.outputs.cache-hit != 'true'
run: yarn install
- name: Build Template
run: yarn run docs:build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.6.0
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.