Remove Safari pinned tab SVG #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install, Build, and Export | |
run: | | |
npm ci | |
npm run build | |
npm run export | |
env: | |
NEXT_PUBLIC_REPO_NAME: ${{ github.event.repository.name }} | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
BRANCH: gh-pages | |
FOLDER: out | |
CLEAN: true |