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 83d6490 commit 4d96f35Copy full SHA for 4d96f35
.github/workflows/cd.yml
@@ -29,12 +29,18 @@ jobs:
29
30
# Deploy
31
deploy:
32
- needs: [build]
33
- runs-on: ubuntu-latest
+ needs: build
+
34
+ environment:
35
+ name: github-pages
36
+ url: ${{ steps.deployment.outputs.page_url }}
37
38
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
39
permissions:
40
pages: write # to deploy to Pages
41
id-token: write # to verify the deployment originates from an appropriate source
42
43
+ runs-on: ubuntu-latest
44
steps:
45
- name: Configure GitHub Pages
46
uses: actions/configure-pages@v5.0.0
0 commit comments