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

[fix] : docker image push 되지 않는 버그 수정 #383

Merged
merged 5 commits into from
Mar 6, 2024
Merged
Changes from 3 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
11 changes: 7 additions & 4 deletions .github/workflows/docker-release-publisher.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Docker release image publisher

on:
pull_request:
branches:
- release
push:
branches:
- release
Expand All @@ -23,7 +26,7 @@ jobs:
uses: gradle/gradle-build-action@v2

- name: Execute Gradle build
run: ./gradlew clean build
run: ./gradlew clean build -x test

- name: Log in to Docker Hub
uses: docker/login-action@v2.1.0
Expand All @@ -33,12 +36,12 @@ jobs:

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4.4.0
uses: docker/metadata-action@v5
with:
images: samillmu/luffy

- name: Build and push Docker image
uses: docker/build-push-action@v4.0.0
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
Expand All @@ -52,4 +55,4 @@ jobs:
SENTRY_DSN=${{ secrets.SENTRY_DSN }}
tags: |
samillmu/luffy:latest
${{ steps.meta.outputs.tags }}
# ${{ steps.meta.outputs.tags }}
Loading