Skip to content

spelling

spelling #68

Workflow file for this run

name: Deploy to GH Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
name: Publish site
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v3
- name: Build and deploy
uses: shalzz/[email protected]
env:
BUILD_ONLY: true
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: "public"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2