Skip to content

Commit 41c2e67

Browse files
committed
deploy
1 parent b107893 commit 41c2e67

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/actions.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,18 @@ jobs:
2424
- name: Setup Pages
2525
id: pages
2626
uses: actions/configure-pages@v5
27-
- run: npm ci
2827
- run: make
2928
- name: Upload
3029
uses: actions/upload-pages-artifact@v3
3130
with:
3231
path: ./dist
32+
deploy:
33+
environment:
34+
name: github-pages
35+
url: ${{ steps.deployment.outputs.page_url }}
36+
runs-on: ubuntu-latest
37+
needs: build
38+
steps:
39+
- name: Deploy to GitHub Pages
40+
id: deployment
41+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)