File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -130,8 +130,8 @@ jobs:
130
130
131
131
# https://docs.docker.com/build/ci/github-actions/multi-platform/
132
132
docker-hub-build-and-publish :
133
- needs : [detect-code-related-file-changes]
134
- if : needs.detect-code-related-file-changes.outputs.has_code_related_changes == 'true'
133
+ # needs: [detect-code-related-file-changes]
134
+ # if: needs.detect-code-related-file-changes.outputs.has_code_related_changes == 'true'
135
135
runs-on : ubuntu-22.04
136
136
steps :
137
137
- name : Check out the repo
@@ -142,17 +142,17 @@ jobs:
142
142
uses : docker/setup-buildx-action@v3
143
143
- name : Login to Docker Hub
144
144
uses : docker/#-action@v3
145
- if : ${{ github.event_name == 'push'}}
145
+ # if: ${{ github.event_name == 'push'}}
146
146
with :
147
147
username : ${{ secrets.DOCKERHUB_USERNAME }}
148
148
password : ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
149
149
- name : Get short commit SHA1
150
- if : ${{ github.event_name == 'push'}}
150
+ # if: ${{ github.event_name == 'push'}}
151
151
shell : bash
152
152
run : |
153
153
echo "short_hash=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV"
154
154
- name : Build and push
155
- if : ${{ github.event_name == 'push'}}
155
+ # if: ${{ github.event_name == 'push'}}
156
156
uses : docker/build-push-action@v5
157
157
with :
158
158
push : true
You can’t perform that action at this time.
0 commit comments