Skip to content

Correct spelling of "Sea Horse" #7

Correct spelling of "Sea Horse"

Correct spelling of "Sea Horse" #7

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Compile JS
run: npx rollup -c
#- name: Assign domain name
# run: echo "dndle.app" > build/CNAME
- name: Deploy site
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public