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 98ca0f1 commit c0fd6a6Copy full SHA for c0fd6a6
.github/workflows/publlic-ghpages.yaml
@@ -0,0 +1,23 @@
1
+name: AsyncAPI documents processing
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
7
+jobs:
8
+ generate:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout repo
12
+ uses: actions/checkout@v5
13
14
+ - name: Generating HTML from my AsyncAPI document
15
+ uses: asyncapi/github-action-for-generator
16
17
+ - name: Deploy GH page
18
+ uses: JamesIves/github-pages-deploy-action
19
+ with:
20
+ filepath: lobby-to-client/v1/asyncapi.html
21
+ ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
+ BRANCH: gh-pages
23
+ FOLDER: .
0 commit comments