Skip to content

Solara

Solara #1

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Change to your default branch if different
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build and Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: . # Directory to publish (current directory)