Browse Source

Fix docker-compose push args order

pull/1565/head
David Sanz 4 years ago
parent
commit
893fd4e8ff
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .github/workflows/basket-api.yml

+ 2
- 2
.github/workflows/basket-api.yml View File

@ -53,13 +53,13 @@ jobs:
if: ${{ github.event_name != 'pull_request' }}
steps:
- name: Compose build ${{ env.services }}
run: echo docker-compose -f src/docker-compose.yml build $env.services
run: docker-compose -f src/docker-compose.yml build $env.services
shell: bash
env:
TAG: ${{ env.branch }}
REGISTRY: ${{ env.registryEndpoint }}
- name: Compose push ${{ env.image }}
run: docker-compose push -f src/docker-compose.yml ${{ env.services }}'
run: docker-compose -f src/docker-compose.yml push ${{ env.services }}'
shell: bash
env:
TAG: ${{ env.branch }}


Loading…
Cancel
Save