Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions workflows/deploy.md → .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Netlify Deploy (Pull Request)

on:
pull_request:
branches: - main # main 브랜치에 PR이 열리면 실행 - develop # develop 브랜치에 PR이 열리면 실행
pull_request:
branches:
- develop # develop 브랜치에 PR이 열리면 실행

jobs:
deploy:
runs-on: ubuntu-latest
deploy:
runs-on: ubuntu-latest

steps:
# 코드 체크아웃
Expand Down
Loading