Skip to content

Commit

Permalink
ci: QEMU, Buildx setup action을 추가한다
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb committed Mar 4, 2024
1 parent 0f6a1eb commit f3aad95
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/docker-release-publisher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
- name: Execute Gradle build
run: ./gradlew clean build -x test

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

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

- name: Log in to Docker Hub
uses: docker/login-action@v2.1.0
with:
Expand All @@ -43,16 +49,16 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
push: true
context: .
file: ./Dockerfile
push: true
build-args: |
DB_URL=${{ secrets.DB_URL }}
DB_USERNAME=${{ secrets.DB_USERNAME }}
DB_PASSWORD=${{ secrets.DB_PASSWORD }}
JWT_SECRET=${{ secrets.JWT_SECRET }}
KAKAO_CLIENT_ID=${{ secrets.KAKAO_CIENT_ID }}
SENTRY_DSN=${{ secrets.SENTRY_DSN }}
tags: |
tags: |
samillmu/luffy:latest
# ${{ steps.meta.outputs.tags }}
${{ steps.meta.outputs.tags }}

0 comments on commit f3aad95

Please sign in to comment.