Skip to content

Deploy

Deploy #43

Workflow file for this run

name: Deploy
on:
workflow_dispatch: {}
push:
paths:
- public/**
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
name: Build and Deploy on GitHub pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/configure-pages@v2
- uses: actions/upload-pages-artifact@v1
with:
path: public
- name: Deploy
id: deployment
uses: actions/deploy-pages@v1