From 9bf4ab6b0bae056f60c47fe481eb23689fcb8af5 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Mon, 23 Mar 2026 16:24:45 +0100 Subject: [PATCH] release: merge upstream sub-site on deploy Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- .github/workflows/deploy.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bc0be5185a..f0e6b08950 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -65,6 +65,18 @@ jobs: docker-bake.hcl targets: release provenance: false + - + name: Login to Docker Hub + uses: docker/login-action@v4 + with: + username: ${{ vars.DOCKER_USER }} + password: ${{ secrets.DOCKER_TOKEN }} + - + name: Merge sub-site + run: | + docker buildx build --output type=local,dest=public - <<'EOF' + FROM docs/dash:dist-latest + EOF - name: Configure AWS Credentials if: ${{ env.DOCS_AWS_IAM_ROLE != '' }}