Skip to content

Commit

Permalink
Merge pull request #571 from metrico/fix/view-pull
Browse files Browse the repository at this point in the history
fix release with qryn-view
  • Loading branch information
akvlad committed Sep 6, 2024
2 parents 71e5f96 + 6d89890 commit 1140496
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push to Docker Hub
if: ${{ steps.checkdocker.outputs.secretspresent }}
uses: docker/build-push-action@v5.0.0
uses: docker/build-push-action@v6
with:
context: "."
platforms: linux/amd64, linux/arm64
push: true
tags: |
Expand All @@ -110,9 +111,10 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push to GHCR
uses: docker/build-push-action@v5.0.0
uses: docker/build-push-action@v6
with:
platforms: linux/amd64, linux/arm64
context: "."
file: ./Dockerfile
push: true
tags: |
Expand Down Expand Up @@ -164,8 +166,9 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push to Docker Hub (bun)
if: ${{ steps.checkdocker.outputs.secretspresent }}
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v6
with:
context: "."
platforms: linux/amd64, linux/arm64
file: ./Dockerfile_bun
push: true
Expand All @@ -183,8 +186,9 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push to GHCR (bun)
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v6
with:
context: "."
platforms: linux/amd64, linux/arm64
file: ./Dockerfile_bun
push: true
Expand Down

0 comments on commit 1140496

Please sign in to comment.