From 9d940b980ead01af45f591837f113f9cf296e960 Mon Sep 17 00:00:00 2001 From: Magnus Walbeck <mw@mwalbeck.org> Date: Sun, 16 Feb 2025 19:46:10 +0100 Subject: [PATCH] Add auth to test [skip ci] --- .forgejo/workflows/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 4e2520a..6baa908 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -29,6 +29,11 @@ jobs: run: | determine-docker-tags dockerd & + - name: Login to Docker Hub + uses: https://github.com/docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN_RO }} - name: Set up Docker Buildx uses: https://github.com/docker/setup-buildx-action@v3 - name: Test build @@ -53,6 +58,11 @@ jobs: run: | determine-docker-tags dockerd & + - name: Login to Docker Hub + uses: https://github.com/docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN_RO }} - name: Set up Docker Buildx uses: https://github.com/docker/setup-buildx-action@v3 - name: Test build @@ -77,6 +87,11 @@ jobs: run: | determine-docker-tags dockerd & + - name: Login to Docker Hub + uses: https://github.com/docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN_RO }} - name: Set up Docker Buildx uses: https://github.com/docker/setup-buildx-action@v3 - name: Test build @@ -101,6 +116,11 @@ jobs: run: | determine-docker-tags dockerd & + - name: Login to Docker Hub + uses: https://github.com/docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN_RO }} - name: Set up Docker Buildx uses: https://github.com/docker/setup-buildx-action@v3 - name: Test build