Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
fix docker username
  • Loading branch information
agirodi authored Dec 12, 2023
1 parent e83d6fa commit 62d77b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
with:
fallback: "dev"
- name: Build Docker image GPU
run: python Docker/build.py --device cuda --tag girodia/fastsurfer:gpu-${{ steps.get_tag.outputs.tag }}
run: python Docker/build.py --device cuda --tag ${{ secrets.DOCKERHUB_USERNAME }}/fastsurfer:gpu-${{ steps.get_tag.outputs.tag }}
- name: Push Docker image GPU
run: docker push girodia/fastsurfer:gpu-${{ steps.get_tag.outputs.tag }}
run: docker push ${{ secrets.DOCKERHUB_USERNAME }}/fastsurfer:gpu-${{ steps.get_tag.outputs.tag }}
deploy-cpu:
runs-on: ubuntu-latest
timeout-minutes: 120
Expand All @@ -48,7 +48,7 @@ jobs:
with:
fallback: "dev"
- name: Build Docker image CPU
run: python Docker/build.py --device cpu --tag girodia/fastsurfer:cpu-${{ steps.get_tag.outputs.tag }}
run: python Docker/build.py --device cpu --tag ${{ secrets.DOCKERHUB_USERNAME }}/fastsurfer:cpu-${{ steps.get_tag.outputs.tag }}
- name: Push Docker image CPU
run: docker push girodia/fastsurfer:cpu-${{ steps.get_tag.outputs.tag }}
run: docker push ${{ secrets.DOCKERHUB_USERNAME }}/fastsurfer:cpu-${{ steps.get_tag.outputs.tag }}

0 comments on commit 62d77b7

Please sign in to comment.