Skip to content

Commit

Permalink
Correct docker hub login
Browse files Browse the repository at this point in the history
  • Loading branch information
kleag committed Apr 29, 2024
1 parent 4263ce3 commit e433bb6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,13 @@ jobs:
name: "Build the package for Manylinux 2.28"
runs-on: ubuntu-latest
steps:
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.AYMARA_DOCKERHUB_USERNAME }}
password: ${{ secrets.AYMARA_DOCKERHUB_TOKEN }}

- name: Checkout code
uses: actions/checkout@v3
- name: Free Disk Space (Ubuntu)
Expand All @@ -130,12 +137,5 @@ jobs:
swap-storage: true
- name: Build image
run: docker build -f ./Dockerfile-manylinux2.28 -t aymara/qhttpserver-manylinux2.28-qt${QT_VERSION}:latest .
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.AYMARA_DOCKERHUB_USERNAME }}
password: ${{ secrets.AYMARA_DOCKERHUB_TOKEN }}

- name: "Push image"
run: docker push aymara/qhttpserver-manylinux2.28-qt${QT_VERSION}:latest

0 comments on commit e433bb6

Please sign in to comment.