17 lines
418 B
YAML
17 lines
418 B
YAML
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
|
|
name: Deploy GitHub Pages
|
|
|
|
on:
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: redkubes/docusaurus-deploy-action@v1
|
|
with:
|
|
source-folder: website
|
|
deployment-branch: main
|