Skip to content

Commit 26c0830

Browse files
committed
pages: add upload + deploy steps
1 parent f5b78fd commit 26c0830

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/pages.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,19 @@ jobs:
1919
steps:
2020
- name: Checkout
2121
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

Comments
 (0)