Skip to content

Commit 1140496

Browse files
authored
Merge pull request #571 from metrico/fix/view-pull
fix release with qryn-view
2 parents 71e5f96 + 6d89890 commit 1140496

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/build_release.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,9 @@ jobs:
9090
password: ${{ secrets.DOCKERHUB_TOKEN }}
9191
- name: Build and push to Docker Hub
9292
if: ${{ steps.checkdocker.outputs.secretspresent }}
93-
uses: docker/build-push-action@v5.0.0
93+
uses: docker/build-push-action@v6
9494
with:
95+
context: "."
9596
platforms: linux/amd64, linux/arm64
9697
push: true
9798
tags: |
@@ -110,9 +111,10 @@ jobs:
110111
username: ${{ github.actor }}
111112
password: ${{ secrets.GITHUB_TOKEN }}
112113
- name: Build and push to GHCR
113-
uses: docker/build-push-action@v5.0.0
114+
uses: docker/build-push-action@v6
114115
with:
115116
platforms: linux/amd64, linux/arm64
117+
context: "."
116118
file: ./Dockerfile
117119
push: true
118120
tags: |
@@ -164,8 +166,9 @@ jobs:
164166
password: ${{ secrets.DOCKERHUB_TOKEN }}
165167
- name: Build and push to Docker Hub (bun)
166168
if: ${{ steps.checkdocker.outputs.secretspresent }}
167-
uses: docker/build-push-action@v5.1.0
169+
uses: docker/build-push-action@v6
168170
with:
171+
context: "."
169172
platforms: linux/amd64, linux/arm64
170173
file: ./Dockerfile_bun
171174
push: true
@@ -183,8 +186,9 @@ jobs:
183186
username: ${{ github.actor }}
184187
password: ${{ secrets.GITHUB_TOKEN }}
185188
- name: Build and push to GHCR (bun)
186-
uses: docker/build-push-action@v5.1.0
189+
uses: docker/build-push-action@v6
187190
with:
191+
context: "."
188192
platforms: linux/amd64, linux/arm64
189193
file: ./Dockerfile_bun
190194
push: true

0 commit comments

Comments
 (0)