Skip to content

Delete architecture-concepts/container.md #29

Delete architecture-concepts/container.md

Delete architecture-concepts/container.md #29

Workflow file for this run

name: Build & Deploy
on:
push:
branches:
- main
paths-ignore:
- '**/__tests__/**'
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
env:
NODE_VERSION: '16'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build documentation site
run: pnpm build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2.2.0
with:
repo: confetti-framework/docs
target_branch: gh-pages
build_dir: .vuepress/dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}