포스팅 이미지 변경경 #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gatsby Build and Deploy | |
on: | |
push: | |
branches: | |
- main # main 브랜치에 푸시될 때마다 워크플로우가 실행됩니다. | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' # Node.js 버전을 지정합니다. 필요에 따라 변경하세요. | |
- name: Install dependencies | |
run: npm install | |
- name: Build Gatsby site | |
run: npm run build | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.PEJ_GITHUB_PAT }} | |
publish_dir: ./public # Gatsby 빌드 결과물의 위치 |