We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f976947 commit 9a8ad58Copy full SHA for 9a8ad58
.github/workflows/publish.yml
@@ -79,13 +79,20 @@ jobs:
79
run: |
80
make release-docs VERSION=${RELEASE_TAG_VERSION} ALIAS="latest"
81
poetry run mike set-default --push latest
82
- - name: Deploy all docs
+ - name: Release API docs to release version
83
uses: peaceiris/actions-gh-pages@v3
84
with:
85
github_token: ${{ secrets.GITHUB_TOKEN }}
86
publish_dir: ./api
87
keep_files: true
88
destination_dir: ${{ env.RELEASE_TAG_VERSION }}/api
89
+ - name: Release API docs to latest
90
+ uses: peaceiris/actions-gh-pages@v3
91
+ with:
92
+ github_token: ${{ secrets.GITHUB_TOKEN }}
93
+ publish_dir: ./api
94
+ keep_files: true
95
+ destination_dir: latest/api
96
97
sync_master:
98
needs: release
0 commit comments