Skip to content

Update index.html

Update index.html #12

Workflow file for this run

name: Build and deploy to GitHub Pages
on:
push:
branches: [main]
permissions:
contents: write
pages: write
id-token: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v2.3.1
- name: Install dependencies and build πŸ”§
run: |
npm install
npm run build
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@4.1.0
with:
branch: gh-pages
folder: dist
token: ${{ secrets.GITHUB_TOKEN }}