Skip to content

Commit fcc85bb

Browse files
authored
Merge pull request #37 from UMC-7th-CAU-NodeJS/feature/add-deploy-pipeline
feat: add deploy-main pipeline (wip)
2 parents e2c2a1b + 3ab46a5 commit fcc85bb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/deploy-main.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: deploy-main # 파이프라인 이름은 자유롭게 지어주세요
2+
3+
on:
4+
push:
5+
branches:
6+
- main # main 브랜치에 새로운 커밋이 올라왔을 떄 실행되도록 합니다
7+
workflow_dispatch: # 필요한 경우 수동으로 실행할 수도 있도록 합니다
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest # CI/CD 파이프라인이 실행될 운영체제 환경을 지정합니다
12+
steps:
13+
- TODO

0 commit comments

Comments
 (0)