Fix CI by using generic script regular_mvn_build_deploy_analyze
aga…
#337
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Typedoc: site for helper function for the bridge' | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
publish-rules-helper-site: | |
runs-on: ubuntu-latest | |
name: Publish typedoc | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Build typedoc site | |
run: | | |
npm ci | |
npm run td | |
- name: Publish typedoc site | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh_pages | |
folder: ./typedoc/site | |
target-folder: ./typedoc | |
commit-message: "Update the bridge helper functions site" |