Skip to content

Commit 2accfdb

Browse files
committed
CLAP-104 CI/CD : 깃허브액션 dev 환경 ci/cd 스크립트 수정
<footer> - 관련: #55
1 parent c637ec0 commit 2accfdb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/dev-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
uses: actions/download-artifact@v4
2121
with:
2222
name: build-artifacts
23+
github-token: ${{ secrets.GH_TOKEN }}
2324

2425
## docker build & push to production
2526
- name: Docker build & push to prod

.github/workflows/dev-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# github repository actions 페이지에 나타날 이름
2-
name: CI/CD using github actions
2+
name: CI for dev using github actions
33

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

1414
jobs:
15-
CI:
15+
DEV_CI:
1616
if: github.event.action == 'opened' || github.event.action == 'synchronize'
1717
runs-on: ubuntu-latest
1818
steps:
@@ -28,7 +28,7 @@ jobs:
2828

2929
# gradle caching - 빌드 시간 향상
3030
- name: Gradle Caching
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: |
3434
~/.gradle/caches

0 commit comments

Comments
 (0)