Skip to content

Merge pull request #45 from MefhigosetH/github-pages #1

Merge pull request #45 from MefhigosetH/github-pages

Merge pull request #45 from MefhigosetH/github-pages #1

Workflow file for this run

name: docs-dev
on:
# trigger deployment on every push to main branch
push:
branches-ignores: [master]
# trigger deployment manually
workflow_dispatch:
jobs:
docs-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# This version of Vuepress need node v12
- uses: actions/setup-node@v4
with:
node-version: 12
- run: yarn install
# run build script
- name: Build VuePress site
run: yarn build
env:
VUEPRESS_BASE: /pinguinoide.github.io/
# 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
uses: crazy-max/ghaction-github-pages@v4
with:
# deploy to gh-pages branch
target_branch: gh-pages
# deploy the default output dir of VuePress
build_dir: site/.vuepress/dist
env:
# @see https://docs.github.com/en/actions/reference/authentication-in-a-workflow#about-the-github_token-secret
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}