Skip to content

improve intro

improve intro #6

Workflow file for this run

name: Deploy website
on:
push:
# We only run this GitHub action upon new commits to `main`
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 6
- name: Install
run: pnpm install
- name: Set environemnt variable $BASE_URL
run: echo "BASE_URL=/handli/" >> $GITHUB_ENV
- name: Build
run: pnpm build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: demo/dist/
# Remove previous build files
clean: true
# Do not remove the `.nojekyll` file: we have manually added an empty `.nojekyll` file at the root of the `gh-pages` branch and we don't want having to re-create it after each build.
clean-exclude: |
.nojekyll