Skip to content

Commit

Permalink
Merge pull request #115 from Team-Shaka/ci/112
Browse files Browse the repository at this point in the history
👷  Ci: 스크립트 수정
  • Loading branch information
swa07016 authored Dec 14, 2023
2 parents bb991e7 + c694bcc commit db12046
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ on:
jobs:
build:
runs-on: ubuntu-latest # (3).OS환경
if: (github.event_name == 'push' && github.ref == 'refs/heads/develop') || (github.event.pull_request && github.event.pull_request.merged == true && github.base_ref == 'develop')
if: >
(github.event_name == 'push' && github.ref == 'refs/heads/develop') ||
(github.event_name == 'pull_request' && github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'develop')
steps:
- name: Checkout
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ on:
jobs:
build:
runs-on: ubuntu-latest # (3).OS환경
if: (github.event_name == 'push' && github.ref == 'refs/heads/release') || (github.event.pull_request && github.event.pull_request.merged == true && github.base_ref == 'release')
if: >
(github.event_name == 'push' && github.ref == 'refs/heads/release') ||
(github.event_name == 'pull_request' && github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'release')
steps:
Expand Down

0 comments on commit db12046

Please sign in to comment.