Skip to content

update favicon for pudge; rm shell on mobile; add social media #38

update favicon for pudge; rm shell on mobile; add social media

update favicon for pudge; rm shell on mobile; add social media #38

Workflow file for this run

name: Build and deploy
on:
push:
branches:
- main
paths:
- public/**
- src/**
permissions:
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 16
- run: |
yarn
yarn build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./public
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2