From 7fbd2f83b2fed227c78c5c3019e794c54a42163a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikolai=20R=C3=B8ed=20Kristiansen?= Date: Mon, 31 Aug 2026 15:36:25 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Authenticate=20to=20Docker=20Hub?= =?UTF-8?q?=20in=20release=20job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This uses a public package scoped token for the tag lookups --- .github/workflows/build.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9ad7293..e878788 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -130,6 +130,9 @@ jobs: else echo "Nothing changed, nothing to archive." fi + env: + DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} + DOCKERHUB_PUBLIC_TOKEN: ${{ secrets.DOCKERHUB_PUBLIC_TOKEN }} test: uses: ./.github/workflows/tests.yaml