diff --git a/.github/workflows/github-actions-builddockerfile.yml b/.github/workflows/github-actions-builddockerfile.yml index 573f542..236dd25 100644 --- a/.github/workflows/github-actions-builddockerfile.yml +++ b/.github/workflows/github-actions-builddockerfile.yml @@ -42,12 +42,6 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Build and push GPU - uses: docker/build-push-action@v5 - with: - push: true - tags: mccloud/subgen:latest - name: Build and push CPU uses: docker/build-push-action@v5 @@ -55,3 +49,9 @@ jobs: file: ./Dockerfile.cpu push: true tags: mccloud/subgen:cpu + - + name: Build and push GPU + uses: docker/build-push-action@v5 + with: + push: true + tags: mccloud/subgen:latest