Skip to content

Merge pull request #450 from Da3zKi7/feat/mediafire #438

Merge pull request #450 from Da3zKi7/feat/mediafire

Merge pull request #450 from Da3zKi7/feat/mediafire #438

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
# make sure this is the branch you are using
- main
jobs:
deploy-gh-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# if your docs needs submodules, uncomment the following line
# submodules: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install Deps
run: npm install
- name: Build Docs
env:
NODE_OPTIONS: --max_old_space_size=8192
run: |-
npm run docs:build
echo "" > docs/.vuepress/dist/.nojekyll
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.MY_TOKEN }}
# external_repository: alist-org/alist-org.github.io
publish_branch: gh-pages
publish_dir: docs/.vuepress/dist
cname: alistgo.com