diff --git a/.github/workflows/deploy-manually.yml b/.github/workflows/deploy-manually.yml index f8c97fb..6bae6e8 100644 --- a/.github/workflows/deploy-manually.yml +++ b/.github/workflows/deploy-manually.yml @@ -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 }}