From b280871bce8af1231eec8993e71e5f8a6204a4ba Mon Sep 17 00:00:00 2001 From: Gabriel Rosa Date: Thu, 4 Jan 2024 14:44:20 -0300 Subject: [PATCH] CI: fix syntax --- .github/workflows/deploy-manually.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }}