We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af0153e commit 48336a1Copy full SHA for 48336a1
.github/workflows/publish.yml
@@ -36,6 +36,17 @@ jobs:
36
tags: type=semver,pattern={{raw}}
37
38
39
+ - name: Build and push Docker image to docker hub
40
+ uses: docker/build-push-action@v1
41
+ with:
42
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
43
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
44
+ repository: 131hub/ingress
45
+
46
+ push: ${{ github.event_name != 'pull_request' }}
47
+ tag_with_ref: true
48
+ add_git_labels: true
49
50
- name: Build and push Docker image
51
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
52
with:
@@ -44,3 +55,6 @@ jobs:
55
tags: ${{ steps.meta.outputs.tags }}
56
labels: ${{ steps.meta.outputs.labels }}
57
58
59
60
0 commit comments