We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5b78fd commit 26c0830Copy full SHA for 26c0830
1 file changed
.github/workflows/pages.yml
@@ -19,3 +19,19 @@ jobs:
19
steps:
20
- name: Checkout
21
uses: actions/checkout@v4
22
+
23
+ - name: Upload Pages artifact
24
+ uses: actions/upload-pages-artifact@v3
25
+ with:
26
+ path: web
27
28
+ deploy:
29
+ needs: build
30
+ runs-on: ubuntu-latest
31
+ environment:
32
+ name: github-pages
33
+ url: ${{ steps.deployment.outputs.page_url }}
34
+ steps:
35
+ - name: Deploy to GitHub Pages
36
+ id: deployment
37
+ uses: actions/deploy-pages@v4
0 commit comments