Skip to content

⬆️ Bump DavidAnson/markdownlint-cli2-action from 15 to 16 #101

⬆️ Bump DavidAnson/markdownlint-cli2-action from 15 to 16

⬆️ Bump DavidAnson/markdownlint-cli2-action from 15 to 16 #101

Workflow file for this run

name: Deploy
on:
push:
branches: [master]
paths-ignore:
- "**.md"
- ".vscode/"
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
check-latest: true
- name: Install NPM package
run: npm install
- name: Build website
run: npm run build:gh-pages
- name: Deploy
uses: JamesIves/[email protected]
with:
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: "dist" # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch