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
File renamed without changes.
4 changes: 1 addition & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,9 @@ jobs:
distribution: 'temurin'

- name: Grant execute permission for gradlew
working-directory: ./slackjudge
run: chmod +x gradlew

- name: Build with Gradle
working-directory: ./slackjudge
run: ./gradlew build -x test

- name: Configure AWS credentials
Expand All @@ -67,7 +65,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./slackjudge
context: .
push: true
tags: |
${{ steps.login-ecr.outputs.registry }}/${{ vars.ECR_REPOSITORY }}:${{ github.sha }}
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ jobs:
checks: write
pull-requests: write

defaults:
run:
working-directory: slackjudge

steps:
- name: Checkout source
uses: actions/checkout@v4
Expand All @@ -54,7 +50,7 @@ jobs:
java-version: ${{ env.JAVA_VERSION }}
distribution: temurin
cache: gradle
cache-dependency-path: slackjudge/*.gradle*
cache-dependency-path: '*.gradle*'

- name: Grant execution to Gradle wrapper
run: chmod +x gradlew
Expand Down Expand Up @@ -83,7 +79,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: worker-app
path: slackjudge/build/libs/*.jar
path: build/libs/*.jar

- name: Integration Summary
run: |
Expand Down
6 changes: 5 additions & 1 deletion slackjudge/.gitignore → .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,8 @@ out/
### VS Code ###
.vscode/
.env
/logs/*
/logs/*

### Secrets & Environment ###

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

IntelliJ IDEA 프로젝트 설정 파일(.idea 디렉토리)이 이번 PR에서 삭제되었습니다. 앞으로 다시 커밋되는 것을 방지하기 위해 .gitignore 파일에 .idea/를 추가하는 것을 권장합니다. .vscode/ 항목 근처에 추가하면 좋을 것 같습니다.

.secrets
.vars
10 changes: 0 additions & 10 deletions .idea/.gitignore

This file was deleted.

21 changes: 0 additions & 21 deletions .idea/compiler.xml

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/dataSources.xml

This file was deleted.

Loading