You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1016 B
52 lines
1016 B
name: Publish docs |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
|
|
jobs: |
|
build: |
|
name: Build |
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
- name: Checkout code |
|
uses: actions/checkout@v3 |
|
|
|
- uses: pnpm/action-setup@v2 |
|
with: |
|
version: 8 |
|
|
|
- name: Install Node.js |
|
uses: actions/setup-node@v3 |
|
with: |
|
node-version: 18 |
|
|
|
- name: Install packages |
|
working-directory: ./.docs |
|
run: npm install |
|
|
|
- name: Build project |
|
working-directory: ./.docs |
|
run: npm run generate |
|
|
|
- name: Upload production-ready build files |
|
uses: actions/upload-pages-artifact@v1 |
|
with: |
|
path: ./.docs/.output/public |
|
|
|
deploy: |
|
name: Deploy |
|
needs: build |
|
permissions: |
|
pages: write |
|
id-token: write |
|
environment: |
|
name: docs |
|
url: ${{ steps.deployment.outputs.page_url }} |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Deploy to GitHub Pages |
|
id: deployment |
|
uses: actions/deploy-pages@v2
|
|
|