Skip to content

chore(release): 2.1.0 #13

chore(release): 2.1.0

chore(release): 2.1.0 #13

Workflow file for this run

name: Create release
on:
push:
tags:
- 'v*'
jobs:
release:
name: Create release
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js version
uses: actions/setup-node@main
with:
node-version-file: '.nvmrc'
- name: Generate release body
run: |
yarn extract-latest-change-log
- name: Create release
id: create-release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false
body_path: RELEASE_BODY.md