feat: polymorphic 컴포넌트 구조 적용 (#22) #25
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: Deploy to GitHub Pages | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Prepare Yarn version | |
run: corepack prepare [email protected] --activate | |
- name: Checkout your repository using git | |
uses: actions/checkout@v3 | |
- name: Install, build, and upload your site | |
uses: withastro/action@v1 | |
# with: | |
# path: . # 저장소 내 Astro 프로젝트의 루트 위치입니다. (선택 사항) | |
# node-version: 18 # 사이트를 빌드하는 데 사용해야 하는 특정 버전의 Node입니다. 기본값은 18입니다. (선택 사항) | |
# package-manager: pnpm@latest # 종속성을 설치하고 사이트를 빌드하는 데 사용해야 하는 노드 패키지 관리자입니다. lockfile을 기반으로 자동으로 감지됩니다. (선택 사항) | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |