Skip to content

ci: update of files from global .github repo (#99) #2

ci: update of files from global .github repo (#99)

ci: update of files from global .github repo (#99) #2

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: 'Release to GitHub'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- name: Add plugin for conventional commits
run: npm install conventional-changelog-conventionalcommits@5.0.0
working-directory: ./.github/workflows
- name: Release to GitHub
working-directory: ./.github/workflows
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_AUTHOR_NAME: asyncapi-bot
GIT_AUTHOR_EMAIL: info@asyncapi.io
GIT_COMMITTER_NAME: asyncapi-bot
GIT_COMMITTER_EMAIL: info@asyncapi.io
run: npx semantic-release@19.0.4