Skip to content

Commit cba8fd2

Browse files
committed
Updated pages-workflow run command
1 parent b5a3402 commit cba8fd2

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

.github/workflows/pages-workflow.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,22 @@ jobs:
3131
ls
3232
ls ../Natural\ Docs
3333
mono ../Natural\ Docs/NaturalDocs.exe docs/config
34-
ls docs
34+
ls docs
35+
36+
- name: Upload static files as artifacts
37+
id: deployment
38+
uses: actions/upload-pages-artifact@v3
39+
with:
40+
path: docs/html/
41+
42+
deploy-pages:
43+
environment:
44+
name: github-pags
45+
url: ${{ steps.deployment.outputs.page_url }}
46+
runs-on: ubuntu-latest
47+
needs: build-pages
48+
49+
steps:
50+
- name: Deploy to GitHub Pages
51+
id: deployment
52+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)