From a8da6fb30b7b978d0cee8cdbc8716895e25d16c0 Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Fri, 14 Nov 2025 08:16:00 +0100 Subject: [PATCH] (actions) correct reference of outputs --- .github/workflows/docs.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 91564cc96..196023951 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,6 +12,8 @@ on: jobs: build: runs-on: ubuntu-latest + outputs: + page_url: ${{ steps.deployment.outputs.page_url }} steps: - uses: actions/checkout@v5 - uses: actions/setup-node@v6 @@ -33,7 +35,7 @@ jobs: runs-on: ubuntu-latest environment: name: github-pages - url: ${{ steps.deployment.outputs.page_url }} + url: ${{ needs.build.outputs.page_url }} permissions: actions: read # to read the artifact from the previous job # pages and id-token required to deploy to GitHub Pages