We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b2eb0 commit 45abf66Copy full SHA for 45abf66
.github/workflows/docker.yml
@@ -17,14 +17,6 @@ jobs:
17
- name: Set up Docker Buildx
18
uses: docker/setup-buildx-action@v2
19
20
- - name: Log in to Docker Hub
21
- if: github.event_name != 'pull_request'
22
- uses: docker/login-action@v2
23
- with:
24
- username: ${{ secrets.DOCKER_USERNAME }}
25
- password: ${{ secrets.DOCKER_PASSWORD }}
26
- continue-on-error: true
27
-
28
- name: Extract metadata
29
id: meta
30
uses: docker/metadata-action@v4
@@ -47,5 +39,7 @@ jobs:
47
39
cache-from: type=gha
48
40
cache-to: type=gha,mode=max
49
41
50
- - name: Build status
51
- run: echo "Docker image built successfully!"
42
+ - name: Build success
43
+ run: |
44
+ echo "✅ Docker image built successfully!"
45
+ echo "Image tags: ${{ steps.meta.outputs.tags }}"
0 commit comments