Browse Source

Fix variables

pull/1565/head
David Sanz 4 years ago
parent
commit
5db1fb65b5
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

@ -55,13 +55,13 @@ jobs:
- name: 'Checkout Github Action' - name: 'Checkout Github Action'
uses: actions/checkout@master uses: actions/checkout@master
- name: Compose build ${{ env.services }} - name: Compose build ${{ env.services }}
run: docker-compose -f src/docker-compose.yml build $env.services
run: docker-compose -f src/docker-compose.yml build ${{ env.services }}
shell: bash shell: bash
env: env:
TAG: ${{ env.branch }} TAG: ${{ env.branch }}
REGISTRY: ${{ env.registryEndpoint }} REGISTRY: ${{ env.registryEndpoint }}
- name: Compose push ${{ env.image }} - name: Compose push ${{ env.image }}
run: docker-compose -f src/docker-compose.yml push ${{ env.services }}'
run: docker-compose -f src/docker-compose.yml push ${{ env.services }}
shell: bash shell: bash
env: env:
TAG: ${{ env.branch }} TAG: ${{ env.branch }}


Loading…
Cancel
Save