Skip to content

Initial commit

Initial commit #1

Workflow file for this run

# .github/workflows/deploy.yml
name: Deploy main branch
on:
push:
branches:
- main
jobs:
deploy-preview:
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- run: |
npm install
npm run build -- --base /${{ github.event.repository.name }}/
cp .eodash/dist/index.html .eodash/dist/404.html
- uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ./.eodash/dist/
branch: gh-pages
clean-exclude: pr-preview