Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix release with qryn-view #571

Merged
merged 6 commits into from
Sep 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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