Skip to content

Merge pull request #182 from travel-guide-tw/dependabot/npm_and_yarn/… #130

Merge pull request #182 from travel-guide-tw/dependabot/npm_and_yarn/…

Merge pull request #182 from travel-guide-tw/dependabot/npm_and_yarn/… #130

Workflow file for this run

name: docs
on:
# trigger deployment on every push to main branch
push:
branches: [main]
# trigger deployment manually
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# fetch all commits to get last updated time or other git log info
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci
- name: 'Create env file'
run: |
echo "${{ secrets.ENV_FILE }}" > .env
- name: Build VitePress site
run: npm run build
# please check out the docs of the workflow for more details
# @see https://github.com/crazy-max/ghaction-github-pages
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: .vitepress/dist
env:
# @see https://docs.github.com/en/actions/reference/authentication-in-a-workflow#about-the-github_token-secret
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}