Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/dev-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: build-artifacts
github-token: ${{ secrets.GH_TOKEN }}

## docker build & push to production
- name: Docker build & push to prod
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# github repository actions 페이지에 나타날 이름
name: CI/CD using github actions
name: CI for dev using github actions

# event trigger
# develop 브랜치에 pull_request가 열렸을 때 실행
Expand All @@ -12,7 +12,7 @@ permissions:
contents: read

jobs:
CI:
DEV_CI:
if: github.event.action == 'opened' || github.event.action == 'synchronize'
runs-on: ubuntu-latest
steps:
Expand All @@ -28,7 +28,7 @@ jobs:

# gradle caching - 빌드 시간 향상
- name: Gradle Caching
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
Expand Down
Loading