Removed BB/CC fields from notes in ChatInput component (#643) #310
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: "Publish" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: "Release" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- run: yarn | |
- run: yarn build | |
- run: yarn version --patch --no-git-tag-version | |
- run: git config core.hooksPath /dev/null | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
branch: main | |
message: "New version release" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} | |
- name: get-npm-version | |
id: package-version | |
uses: martinbeentjes/npm-get-version-action@main | |
- name: Create Release | |
run: (gh release create v${{ steps.package-version.outputs.current-version}} --generate-notes) || true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: "Publish" | |
uses: JS-DevTools/npm-publish@v1 | |
with: | |
access: "public" | |
token: ${{ secrets.NPM_TOKEN }} |