CI: fix syntax

This commit is contained in:
Gabriel Rosa
2024-01-04 14:44:20 -03:00
parent fd73663940
commit b280871bce
+2 -2
View File
@@ -119,14 +119,14 @@ jobs:
docker-compose -f build.docker-compose.yml push
- name: Login to Docker Hub
if: ${{github.event.inputs.push_to_dockerhub}}
if: ${{inputs.push_to_dockerhub}}
uses: docker/login-action@v2
with:
username: dadosfera
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build, Tag, and Push Image to Dockerhub
if: ${{github.event.inputs.push_to_dockerhub}}
if: ${{inputs.push_to_dockerhub}}
env:
ENV: ${{ needs.extract_environment.outputs.environment }}
IMAGE_TAG: ${{ needs.semantic_release.outputs.new_release_version }}