✨ 4년전 웹 개발을 해보기로 결심한 이유 업데이트 #423
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: Vuepress Deploy | |
on: | |
push: | |
branches: | |
- master | |
- next | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: pnpm/action-setup@v3 | |
name: Install pnpm | |
with: | |
version: 8 | |
run_install: false | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
env: | |
VITE_APP_KAKAO_API_KEY: ${{ secrets.VITE_APP_KAKAO_API_KEY }} | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.ACCESS_TOKEN }} | |
publish_dir: src/.vitepress/dist |