File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 image : basket.api
1717 branch : $(echo ${GITHUB_REF#refs/heads/})
1818jobs :
19- login :
20- runs-on : ubuntu-latest
21- steps :
22- - name : Login to Container Registry
23- uses : docker/login-action@v1
24- with :
25- registry : ${{ env.registryEndpoint }}
26- username : ${{ secrets.USERNAME }}
27- password : ${{ secrets.PASSWORD }}
19+ # login:
20+ # runs-on: ubuntu-latest
21+ # steps:
22+ # - name: Login to Container Registry
23+ # uses: docker/login-action@v1
24+ # with:
25+ # registry: ${{ env.registryEndpoint }}
26+ # username: ${{ secrets.USERNAME }}
27+ # password: ${{ secrets.PASSWORD }}
2828 BuildContainersForPR_Linux :
2929 runs-on : ubuntu-16.04
3030 if : ${{ github.event_name == 'pull_request' }}
5454 steps :
5555 - name : ' Checkout Github Action'
5656 uses : actions/checkout@master
57+ - name : Login to Container Registry
58+ uses : docker/login-action@v1
59+ with :
60+ registry : ${{ env.registryEndpoint }}
61+ username : ${{ secrets.USERNAME }}
62+ password : ${{ secrets.PASSWORD }}
5763 - name : Compose build ${{ env.services }}
5864 run : docker-compose -f src/docker-compose.yml build ${{ env.services }}
5965 shell : bash
You can’t perform that action at this time.
0 commit comments