Skip to content

ci: switch to actions/deploy-pages@v2 #109

ci: switch to actions/deploy-pages@v2

ci: switch to actions/deploy-pages@v2 #109

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [master]
jobs:
build:
name: Build docusaurus app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.x
cache: yarn
- name: Build website
run: |
yarn install --frozen-lockfile
yarn build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: build/
deploy:
name: Deploy to GitHub pages
# Do not run this unless *pushing* to `master`.
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
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@v2