Skip to content

chore: change deploy cname #8

chore: change deploy cname

chore: change deploy cname #8

Workflow file for this run

name: Github Pages Deploy
on:
push:
branches: [ "main" ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: yarn install
- name: Setup Git Config
run: |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Build Project and Deploy to Github Pages
run: yarn deploy