Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: actions 적용 브랜치 설정 #30

Merged
merged 4 commits into from
Jul 23, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/backend-ci-cd.yml
Original file line number Diff line number Diff line change
@@ -3,7 +3,6 @@ name: Backend CI/CD Workflow
on:
pull_request:
branches: [ "develop-BE" ]
paths: [ "backend/**" ]

jobs:

@@ -27,6 +26,7 @@ jobs:

- name: Build with Gradle Wrapper
run: ./gradlew clean build
working-directory: ./backend

- name: Docker build and push
run: |
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM --platform=linux/arm64 amazoncorretto:17

COPY build/libs/chongdae-0.0.1-SNAPSHOT.jar app.jar
COPY backend/build/libs/chongdae-0.0.1-SNAPSHOT.jar app.jar

ENTRYPOINT ["java", "-jar", "/app.jar"]