test docker hub login
Some checks failed
/ build (push) Failing after 46s

This commit is contained in:
jon brookes 2025-11-29 16:02:42 +00:00
parent 745e811d30
commit 8afb850a1a

View file

@ -15,9 +15,14 @@ jobs:
pwd pwd
echo "Listing files:" echo "Listing files:"
ls -la ls -la
# - name: Login to Docker Hub
# run: |
# echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Login to Docker Hub - name: Login to Docker Hub
run: | uses: docker/login-action@v3
echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# - name: Build and Push # - name: Build and Push
# run: | # run: |