Skip to content

Commit

Permalink
fix: yml 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yunuo46 committed Apr 30, 2024
1 parent 591cf52 commit 2bf1ceb
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/back.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,19 @@ jobs:
uses: actions/checkout@v4

- name: Set up Docker
uses: docker/setup-buildx-action@v3
uses: decker/setup-buildx-action@v3

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'

- name: Set up Gradle
uses: gradle/gradle-build-action@v3

- name: Build with Gradle
run: ./gradlew build

- name: Login to ghcr
uses: docker/login-action@v3
Expand All @@ -30,6 +42,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/yunuo46/getaguitar:latest

Expand Down

0 comments on commit 2bf1ceb

Please sign in to comment.