Browse Source

remove uses

pull/1565/head
Borja García Rodríguez 4 years ago
parent
commit
cf03967f15
1 changed files with 3 additions and 8 deletions
  1. +3
    -8
      .github/workflows/basket-api.yml

+ 3
- 8
.github/workflows/basket-api.yml View File

@ -19,8 +19,7 @@ jobs:
login: login:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
-
name: Login to GitHub Container Registry
- name: Login to GitHub Container Registry
uses: docker/login-action@v1 uses: docker/login-action@v1
with: with:
registry: ${{ env.registryEndpoint }} registry: ${{ env.registryEndpoint }}
@ -30,7 +29,6 @@ jobs:
runs-on: ubuntu-16.04 runs-on: ubuntu-16.04
if: ${{ github.event_name == 'pull_request' }} if: ${{ github.event_name == 'pull_request' }}
steps: steps:
- uses: actions/checkout@v2
- name: Compose build ${{ env.services }} - name: Compose build ${{ env.services }}
run: docker-compose build -f src/docker-compose.yml ${{ env.services }} run: docker-compose build -f src/docker-compose.yml ${{ env.services }}
shell: bash shell: bash
@ -42,7 +40,6 @@ jobs:
if: ${{ false }} if: ${{ false }}
# if: ${{ github.event_name == 'pull_request' }} # if: ${{ github.event_name == 'pull_request' }}
steps: steps:
- uses: actions/checkout@v2
- name: Compose build ${{ env.services }} - name: Compose build ${{ env.services }}
run: docker-compose build -f src/docker-compose.yml ${{ env.services }} run: docker-compose build -f src/docker-compose.yml ${{ env.services }}
shell: pwsh shell: pwsh
@ -55,8 +52,7 @@ jobs:
runs-on: ubuntu-16.04 runs-on: ubuntu-16.04
if: ${{ github.event_name != 'pull_request' }} if: ${{ github.event_name != 'pull_request' }}
steps: steps:
- uses: actions/checkout@v2
name: Compose build ${{ env.services }}
- name: Compose build ${{ env.services }}
run: docker-compose build -f src/docker-compose.yml ${{ env.services }} run: docker-compose build -f src/docker-compose.yml ${{ env.services }}
shell: bash shell: bash
env: env:
@ -73,8 +69,7 @@ jobs:
if: ${{ false }} if: ${{ false }}
# if: ${{ github.event_name != 'pull_request' }} # if: ${{ github.event_name != 'pull_request' }}
steps: steps:
- uses: actions/checkout@v2
name: Compose build ${{ env.services }}
- name: Compose build ${{ env.services }}
run: docker-compose build -f src/docker-compose.yml ${{ env.services }} run: docker-compose build -f src/docker-compose.yml ${{ env.services }}
shell: pwsh shell: pwsh
env: env:


Loading…
Cancel
Save