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 a25e36e commit 12354f3Copy full SHA for 12354f3
.github/workflows/main.yml
@@ -11,6 +11,11 @@ on:
11
env:
12
PGDATADIR: /var/lib/postgresql/data
13
14
+permissions:
15
+ contents: read
16
+ pages: write
17
+ id-token: write
18
+
19
jobs:
20
build:
21
runs-on: ubuntu-latest
@@ -74,4 +79,17 @@ jobs:
74
79
PGUSER: postgres
75
80
PGPASSWORD: postgres
76
81
- name: Docs
77
- run: npx typedoc
82
+ run: npx typedoc
83
+ - uses: actions/upload-pages-artifact@v2
84
+ with:
85
+ path: ./docs
86
+ deploy:
87
+ runs-on: ubuntu-latest
88
+ environment:
89
+ name: github-pages
90
+ url: ${{ steps.deployment.outputs.page_url }}
91
+ needs: build
92
+ steps:
93
+ - name: Deploy to GitHub Pages
94
+ id: deployment
95
+ uses: actions/deploy-pages@v2
0 commit comments