Skip to content

added favicon

added favicon #3

Workflow file for this run

name: Pages Deployment
on:
push:
branches: [pages]
workflow_dispatch:
jobs:
emit:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Upload artifact for GitHub Pages
uses: actions/upload-pages-artifact@v3
with:
path: web/
deploy:
needs: emit
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy artifact to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4