Commit bc8aae5 1 parent 5947cb0 commit bc8aae5 Copy full SHA for bc8aae5
File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 50
50
51
51
# Login against a Docker registry except on PR
52
52
- name : Log into registry ${{ env.REGISTRY }}
53
- if : github.event_name != 'pull_request'
54
53
uses : docker/login-action@v3
55
54
with :
56
55
registry : ${{ env.REGISTRY }}
69
68
${{ matrix.postgres_version }}-${{ matrix.major }}
70
69
71
70
# Build and push Docker image with Buildx, using only the digest
72
- - name : Build and push Docker image
73
- id : build-and-push
71
+ - name : Build and push Docker image with digest
72
+ id : build-and-push-digest
74
73
uses : docker/build-push-action@v5
75
74
with :
76
75
context : .
98
97
docker rm test-db
99
98
100
99
# Build and push Docker image with Buildx,this time using the final tags
101
- - name : Build and push Docker image
102
- id : build-and-push
100
+ - name : Build and push Docker image with final tags (release)
101
+ id : build-and-push-release
103
102
if : github.event_name != 'pull_request'
104
103
uses : docker/build-push-action@v5
105
104
with :
You can’t perform that action at this time.
0 commit comments