We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05204fc commit f3efce5Copy full SHA for f3efce5
.github/workflows/actions.yml
@@ -25,6 +25,9 @@ jobs:
25
contents: write
26
pages: write
27
id-token: write
28
+ environment:
29
+ name: github-pages
30
+ url: ${{ steps.deployment.outputs.page_url }}
31
runs-on: ubuntu-latest
32
steps:
33
- name: Checkout repository
@@ -38,16 +41,14 @@ jobs:
38
41
run: npm ci
39
42
- name: Build Website
40
43
run: npm run build
- - name: List files for debugging before upload
- run: |
- ls -la .
44
- pwd
45
- name: Upload artifact
46
uses: actions/upload-pages-artifact@v3
47
with:
48
path: ./output
49
- name: List files for debugging after upload
50
- run: ls -la
+ run: |
+ ls -la .
51
+ pwd
52
- name: Deploy to GitHub Pages
53
id: deployment
54
uses: actions/deploy-pages@v4
0 commit comments