Skip to content

Commit

Permalink
Merge pull request #53 from zeze1004/chore/actions-script
Browse files Browse the repository at this point in the history
[#49] Actions 배포 파일 수정
  • Loading branch information
zeze1004 committed Mar 28, 2024
2 parents b1c82b5 + a51eee3 commit cf0dd5d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,6 @@ jobs:
restore-keys: |
${{ runner.os }}-
## gradle build
- name: Test with Gradle
run: |
./gradlew test
- name: Build with Gradle
run: |
./gradlew build -x test
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

Expand All @@ -55,7 +46,7 @@ jobs:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPOSITORY }}:${{ github.ref_name }}
tags: ${{ secrets.DOCKER_USERNAME }}/odee-project:${{ github.ref_name }}

- name: Deploy using docker-compose
run: |
Expand Down
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 3 additions & 0 deletions src/main/java/org/wedding/domain/CardBoard.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import java.util.stream.Collectors;

public class CardBoard {
/*
private final LinkedHashMap<Integer, Card> cardList = new LinkedHashMap<>();
public void createCard() {
Expand Down Expand Up @@ -52,4 +53,6 @@ public String toString() {
}
""".formatted(cardList);
}
*/
}

0 comments on commit cf0dd5d

Please sign in to comment.