Skip to content

Commit 2a3df11

Browse files
committed
avoid rebuild
1 parent 3fe8d25 commit 2a3df11

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/buildContainer.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -250,12 +250,14 @@ jobs:
250250
251251
- name: Push image to ghcr (only if tests passed)
252252
if: success()
253-
uses: docker/build-push-action@v6
254-
with:
255-
context: .
256-
push: true
257-
file: Images/${{ matrix.multiplugin }}/${{ matrix.multiplugin }}.dockerfile
258-
tags: ghcr.io/${{ github.repository }}/${{ matrix.multiplugin }}:testcandidate
253+
run: |
254+
docker push ghcr.io/${{ github.repository }}/${{ matrix.multiplugin }}:testcandidate
255+
#uses: docker/build-push-action@v6
256+
#with:
257+
# context: .
258+
# push: true
259+
# file: Images/${{ matrix.multiplugin }}/${{ matrix.multiplugin }}.dockerfile
260+
# tags: ghcr.io/${{ github.repository }}/${{ matrix.multiplugin }}:testcandidate
259261

260262
publish_images:
261263
needs:

0 commit comments

Comments
 (0)