website: add trailing slash config

This commit is contained in:
Yangshun
2021-09-05 16:55:36 +08:00
parent a336676197
commit 25fdaa4666
2 changed files with 4 additions and 3 deletions

View File

@ -46,10 +46,10 @@ jobs:
git config --global user.name "gh-actions"
cd website
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
npm ci
else
npm i
npm i
fi
npm run deploy