Skip to content

Fix github logo light/dark mode. (#6) #2

Fix github logo light/dark mode. (#6)

Fix github logo light/dark mode. (#6) #2

Workflow file for this run

on:
workflow_dispatch:
push:
branches: [main]
permissions:
contents: write
pages: write
id-token: write
deployments: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '19'
- name: Install dependencies
run: npm ci
- name: Build the app
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload GitHub Pages artifact
uses: actions/[email protected]
with:
path: 'build'
- name: Deploy GitHub Pages site
uses: actions/[email protected]