[docs] 컨트리뷰션 가이드 및 관련 가이드를 작성한다 (#32) #34
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
# ref: https://milooy.wordpress.com/2020/07/28/github-actions%EB%A1%9C-vuepress-%EB%B0%B0%ED%8F%AC%ED%95%98%EA%B8%B0/ | |
name: Build and Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Vuepress deploy | |
uses: jenkey2011/[email protected] | |
env: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
BUILD_SCRIPT: yarn && yarn build | |
TARGET_BRANCH: gh-pages | |
BUILD_DIR: src/.vuepress/dist |