Skip to content

fix: add LiteWorldEdit and TimeManager plugins to README for better v… #8

fix: add LiteWorldEdit and TimeManager plugins to README for better v…

fix: add LiteWorldEdit and TimeManager plugins to README for better v… #8

Workflow file for this run

name: Deploy VuePress with GitHub Pages dependencies preinstalled
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
# Install dependencies
- name: Install Dependencies
run: |
cd docs
npm ci
npm run docs:build
mv src/.vuepress/dist ../_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4