feat: new traits merge mechanism (#907) #227
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: Release the spec | |
on: | |
push: | |
branches: | |
- master | |
- next-spec | |
- next-major-spec | |
jobs: | |
release: | |
name: 'Create GitHub release' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
- name: Add plugin for conventional commits | |
run: npm install conventional-changelog-conventionalcommits | |
- name: Release to GitHub | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GIT_AUTHOR_NAME: asyncapi-bot | |
GIT_AUTHOR_EMAIL: [email protected] | |
GIT_COMMITTER_NAME: asyncapi-bot | |
GIT_COMMITTER_EMAIL: [email protected] | |
run: npx [email protected] |