CI: revert changes to Docker workflow.

Credentials were removed from repository secrets and that's why login doesn't
work.

This reverts commit c4e244effc.
This reverts commit c8988499dc.
This commit is contained in:
Leonid Pliushch 2021-03-29 17:47:42 +03:00
parent c4e244effc
commit cbdd1cf4c7
No known key found for this signature in database
GPG Key ID: 45F2964132545795
1 changed files with 4 additions and 1 deletions

View File

@ -24,6 +24,9 @@ jobs:
cd ./scripts
docker build --tag termux/package-builder:latest .
- name: Push to hub.docker.com
env:
DOCKER_LOGIN: xeffyr
DOCKER_PASS: ${{ secrets.DOCKER_HUB_PASSWORD }}
run: |
docker login --username xeffyr --password ${{ secrets.DOCKER_HUB_PASSWORD }}
docker login --username "${DOCKER_LOGIN}" --password "${DOCKER_PASS}"
docker push termux/package-builder:latest