Skip to content

ci: 🎡 update ci #339

ci: 🎡 update ci

ci: 🎡 update ci #339

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.18.0
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- run: |
pnpm -v
node -v
npm -v
pnpm install --no-frozen-lockfile
pnpm run build
cd packages/engine-website-app/dist
pwd
mkdir documents
cp -r ../../docs-app/dist/* ./documents
- name: current path
run: pwd
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: 'packages/engine-website-app/dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1