Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
Fix missing encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
t03i committed Sep 20, 2023
1 parent c89f181 commit 5795743
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ jobs:
uses: docker/login-action@v2
with:
registry: registry.rostlab.org
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}
username: "${{ secrets.REGISTRY_USER }}"
password: "${{ secrets.REGISTRY_TOKEN }}"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and Push Docker Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
tags: "registry.rostlab.org/rostlab/tmvisdb:${{ github.ref }}, registry.rostlab.org/rostlab/tmvisdb:latest"
tags: |
"registry.rostlab.org/rostlab/tmvisdb:${{ github.ref }}"
"registry.rostlab.org/rostlab/tmvisdb:latest"
build-args: "GIT_HASH=${GITHUB_SHA}"

0 comments on commit 5795743

Please sign in to comment.