From 0c48625b619b382ebf8cb4597569046043b5350e Mon Sep 17 00:00:00 2001 From: Ivan Morandi Date: Tue, 23 Apr 2024 14:00:05 +0200 Subject: [PATCH] fix: fix deploy pipeline --- .github/actions/docker/deploy/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/docker/deploy/action.yml b/.github/actions/docker/deploy/action.yml index df89923d..7dd8ce84 100644 --- a/.github/actions/docker/deploy/action.yml +++ b/.github/actions/docker/deploy/action.yml @@ -29,10 +29,10 @@ runs: username: ${{ github.actor }} password: ${{ inputs.GITHUB_TOKEN }} - name: Pull docker images - shell: 'bash' + shell: 'sh' run: docker-compose --project-name ${{ inputs.PROJECT_NAME }} -f ${{ inputs.DOCKER_COMPOSE_PATH }} ${{ inputs.DOCKER_COMPOSE_EXTRA_ARGS }} pull - name: Run docker-compose up - shell: 'bash' + shell: 'sh' run: docker-compose --project-name ${{ inputs.PROJECT_NAME }} -f ${{ inputs.DOCKER_COMPOSE_PATH }} ${{ inputs.DOCKER_COMPOSE_EXTRA_ARGS }} up --build --remove-orphans --force-recreate -d