From d34ccd7691fca9973b87895816404dc931024b5d Mon Sep 17 00:00:00 2001 From: Marko Atanasievski Date: Mon, 12 Aug 2024 14:31:30 +0200 Subject: [PATCH] fix: dockerhub access --- .github/workflows/jerigon-native.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/jerigon-native.yml b/.github/workflows/jerigon-native.yml index 8755c3187..54d8a00b1 100644 --- a/.github/workflows/jerigon-native.yml +++ b/.github/workflows/jerigon-native.yml @@ -38,12 +38,18 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v3 + - name: Login to Dockerhub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB }} + password: ${{ secrets.DOCKERHUB_KEY }} + - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Set up rust cache uses: Swatinem/rust-cache@v2