Skip to content

Update Logout.tsx

Update Logout.tsx #5

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ "dev-deploy" ]
pull_request:
branches: [ "dev-deploy" ]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
env:
CI: false
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: './build'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2