We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 669accc commit 473c4a5Copy full SHA for 473c4a5
1 file changed
.github/workflows/basket-api.yml
@@ -47,12 +47,15 @@ jobs:
47
- name: 'Checkout Github Action'
48
uses: actions/checkout@master
49
50
- - name: Login to Container Registry
51
- uses: docker/login-action@v1
52
- with:
53
- registry:
54
- username: ${{ secrets.USERNAME }}
55
- password: ${{ secrets.PASSWORD }}
+ # - name: Login to Container Registry
+ # uses: docker/login-action@v1
+ # with:
+ # registry:
+ # username: ${{ secrets.USERNAME }}
+ # password: ${{ secrets.PASSWORD }}
56
+ - name: Login to DockerHub Registry
57
+ run: echo ${{ secrets.PASSWORD }} | sudo docker login -u ${{ secrets.USERNAME }} --password-stdin
58
+ shell: bash
59
60
- name: Get branch name
61
run: |
0 commit comments