mirror of
https://github.com/actualbudget/actual.git
synced 2026-06-03 17:07:08 -05:00
50 lines
1.1 KiB
YAML
50 lines
1.1 KiB
YAML
# Based on https://github.com/actions/starter-workflows/blob/51e3d515/pages/nextjs.yml
|
|
name: Deploy to GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: 'pages'
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16'
|
|
cache: yarn
|
|
- name: Setup Pages
|
|
uses: actions/configure-pages@v2
|
|
- name: Install dependencies
|
|
run: yarn install --frozen-lockfile
|
|
- name: Build with Docusaurus
|
|
run: yarn build
|
|
- name: Upload artifact
|
|
uses: actions/upload-pages-artifact@v1
|
|
with:
|
|
path: ./build
|
|
|
|
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@v1
|