Skip to content

2024 개발 도구 사용 안내 각 언어 버전 업데이트 #46

2024 개발 도구 사용 안내 각 언어 버전 업데이트

2024 개발 도구 사용 안내 각 언어 버전 업데이트 #46

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