Browse Source

fix secret ref

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

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

@ -6,6 +6,7 @@ on:
- master
- dev
- feature/github-actions
paths:
- src/BuildingBlocks/*
- src/Services/Basket/*
@ -101,8 +102,8 @@ jobs:
- name: Create multiarch manifest
run: |
docker --config ~/.docker manifest create ${{ env.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ env.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
docker --config ~/.docker manifest push ${{ env.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
docker --config ~/.docker manifest create ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
docker --config ~/.docker manifest push ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
shell: bash
BuildWindows:


Loading…
Cancel
Save