docs: added decriptions to all types in types.ts #6
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
# Based on template from https://nanthakumaran.medium.com/how-to-automate-releases-and-publish-packages-to-npm-using-github-actions-910d5128c0fa | |
name: Create release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
# TODO: Once 1.0.0 is released, we can automate releases with conventional commits | |
# changelog: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Conventional Changelog Action | |
# id: changelog | |
# uses: TriPSs/[email protected] | |
# with: | |
# github-token: ${{ secrets.PA_TOKEN }} | |
# version-file: './package.json,./package-lock.json' | |
# - name: create release | |
# uses: actions/create-release@v1 | |
# if: ${{ steps.changelog.outputs.skipped == 'false' }} | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.PA_TOKEN }} | |
# with: | |
# tag_name: ${{ steps.changelog.outputs.tag }} | |
# release_name: ${{ steps.changelog.outputs.tag }} | |
# body: ${{ steps.changelog.outputs.clean_changelog }} |