Skip to content

Merge pull request #62 from devwqc/develop #18

Merge pull request #62 from devwqc/develop

Merge pull request #62 from devwqc/develop #18

Workflow file for this run

name: Deploy to GitHub Pages
on:
# 'main' 브랜치로 푸시할 때마다 워크플로를 트리거합니다.
# 다른 브랜치 이름을 사용하시나요? `main`을 브랜치 이름으로 바꾸세요.
push:
branches: [main]
# GitHub의 Actions 탭에서 이 워크플로를 수동으로 실행할 수 있습니다.
workflow_dispatch:
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Install, build, and upload your site
uses: withastro/action@v3
# with:
# path: . # 저장소 내 Astro 프로젝트의 루트 위치입니다. (선택 사항)
# node-version: 20 # 사이트를 빌드하는 데 사용해야 하는 특정 버전의 Node입니다. 기본값은 20입니다. (선택 사항)
# 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@v4