diff --git a/.github/workflows/deploy_compose.yml b/.github/workflows/deploy_compose.yml index 8d52b4e..b606d99 100644 --- a/.github/workflows/deploy_compose.yml +++ b/.github/workflows/deploy_compose.yml @@ -25,6 +25,10 @@ on: required: false type: string default: 'up -d' + pull_images_first: + required: false + type: string + default: 'false' jobs: deploy_compose: @@ -67,6 +71,7 @@ jobs: stack_file_name: ${{ inputs.stack_file_name }} env_file_name: ${{ inputs.env_file_name }} args: ${{ inputs.args }} + pull_images_first: ${{ inputs.pull_images_first }} docker_registry_uri: ${{ secrets.REGISTRY_HOST }} docker_registry_username: ${{ secrets.REGISTRY_USERNAME }} docker_registry_password: ${{ secrets.REGISTRY_PASSWORD }} @@ -83,6 +88,7 @@ jobs: stack_file_name: ${{ inputs.stack_file_name }} env_file_name: ${{ inputs.env_file_name }} args: ${{ inputs.args }} + pull_images_first: ${{ inputs.pull_images_first }} docker_registry_uri: ${{ secrets.REGISTRY_HOST }} docker_registry_username: ${{ secrets.REGISTRY_USERNAME }} docker_registry_password: ${{ secrets.REGISTRY_PASSWORD }} \ No newline at end of file