mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
fix: 🔧 Fix incorrect args in release Docker image publishing workflow (#256)
This commit is contained in:
parent
4b0aba0f38
commit
b5bc2de11e
1 changed files with 5 additions and 2 deletions
7
.github/workflows/task-publish-binary.yml
vendored
7
.github/workflows/task-publish-binary.yml
vendored
|
|
@ -135,8 +135,11 @@ jobs:
|
|||
- name: Cargo build
|
||||
uses: ./.github/workflow-templates/publish-docker
|
||||
with:
|
||||
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
dockerhub_password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
dockerfile: ./operator/Dockerfile
|
||||
context: .
|
||||
registry: docker.io
|
||||
registry_username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
registry_password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
image_tags: ${{ steps.prep.outputs.tags }}
|
||||
image_title: ${{ github.event.repository.name }}
|
||||
image_description: ${{ github.event.repository.description }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue