We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd8efab commit a8da6fbCopy full SHA for a8da6fb
.github/workflows/docs.yml
@@ -12,6 +12,8 @@ on:
12
jobs:
13
build:
14
runs-on: ubuntu-latest
15
+ outputs:
16
+ page_url: ${{ steps.deployment.outputs.page_url }}
17
steps:
18
- uses: actions/checkout@v5
19
- uses: actions/setup-node@v6
@@ -33,7 +35,7 @@ jobs:
33
35
34
36
environment:
37
name: github-pages
- url: ${{ steps.deployment.outputs.page_url }}
38
+ url: ${{ needs.build.outputs.page_url }}
39
permissions:
40
actions: read # to read the artifact from the previous job
41
# pages and id-token required to deploy to GitHub Pages
0 commit comments