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 ca80fc4 commit 7b01a25Copy full SHA for 7b01a25
.github/workflows/ci.yml
@@ -69,8 +69,11 @@ jobs:
69
- name: Validate JSON Schema
70
run: nix develop --command jv ./schema.json
71
72
- PublishJsonSchemaDocs:
+ BuildAndPublishJsonSchemaDocs:
73
runs-on: ubuntu-latest
74
+ environment:
75
+ name: github-pages
76
+ url: ${{ steps.publish.outputs.page_url }}
77
permissions:
78
contents: read
79
pages: write
@@ -83,6 +86,8 @@ jobs:
83
86
with:
84
87
determinate: true
85
88
- uses: DeterminateSystems/flakehub-cache-action@main
89
+ - name: Set up GitHub Pages
90
+ uses: actions/configure-pages@v5
91
- name: Generate JSON Schema docs
92
id: generate
93
run: |
@@ -93,6 +98,7 @@ jobs:
98
94
99
path: ./dist
95
100
- name: Publish docs to GitHub Pages
101
+ id: publish
96
102
uses: actions/deploy-pages@v4
97
103
104
SynthesizeIntegration:
0 commit comments