Skip to content

Python 2 제거에 따른 Example 코드 정리 #47

Python 2 제거에 따른 Example 코드 정리

Python 2 제거에 따른 Example 코드 정리 #47

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: "14.x"
- run: yarn install
- run: yarn predeploy
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out