We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5a3402 commit cba8fd2Copy full SHA for cba8fd2
1 file changed
.github/workflows/pages-workflow.yml
@@ -31,4 +31,22 @@ jobs:
31
ls
32
ls ../Natural\ Docs
33
mono ../Natural\ Docs/NaturalDocs.exe docs/config
34
- ls docs
+ 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
52
+ uses: actions/deploy-pages@v4
0 commit comments