feat: extend typedoc with project custom config (#34) #54
This file contains hidden or 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: Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| NODE_VERSION: 24.x | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: google-github-actions/release-please-action@v4 | |
| id: release | |
| with: | |
| token: ${{ secrets.BOT_TOKEN }} | |
| release-type: node | |
| - uses: actions/checkout@v4 | |
| # These if statements ensure that a publication only occurs when a new release is created | |
| if: ${{ steps.release.outputs.release_created }} | |
| - name: Tag major and patch versions | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: | | |
| git config user.name zakodium-bot | |
| git config user.email 72201612+zakodium-bot@users.noreply.github.com | |
| git remote add gh-token "https://${{ secrets.BOT_TOKEN}}@github.com/${{ github.repository }}.git" | |
| git tag -d v${{ steps.release.outputs.major }} || true | |
| git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true | |
| git push origin :v${{ steps.release.outputs.major }} || true | |
| git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true | |
| git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}" | |
| git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}" | |
| git push origin v${{ steps.release.outputs.major }} | |
| git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} |