Skip to content

Commit

Permalink
Merge pull request #43 from SOPT-all/CICD/github-action/#40
Browse files Browse the repository at this point in the history
[Fix]  빌드경로 수정
  • Loading branch information
gonn-i authored Nov 22, 2024
2 parents 6fb7a96 + e7aabae commit 634d87b
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/auto.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
name: Synchronize to forked repo

on:
push:
push: # 브랜치로 push될 때 실행
branches:
- main
- develop
pull_request: # PR 생성 및 업데이트 시 실행
branches:
- main # main 브랜치에 대한 PR
- develop # develop 브랜치에 대한 PR

jobs:
sync:
Expand All @@ -14,10 +20,14 @@ jobs:
uses: actions/checkout@v4

- name: Install dependencies
run: yarn install
run: |
cd Lotte-Cinema
yarn install
- name: Build project
run: yarn run build
run: |
cd Lotte-Cinema
yarn run build
- name: Add remote-url
run: |
Expand Down

0 comments on commit 634d87b

Please sign in to comment.