Skip to content

헤더 및 홈페이지 구현 완료 #12

헤더 및 홈페이지 구현 완료

헤더 및 홈페이지 구현 완료 #12

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Output folder structure
run: ls -lah
- name: Preserve CNAME
run: echo "portfolio.howu.run" > dist/CNAME
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GH_TOKEN }}
publish_dir: ./dist