Skip to content

2.0.6

2.0.6 #12

name: CD
on:
push:
tags:
- 'v*'
jobs:
deploy_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: master
- uses: pnpm/action-setup@v2.0.1
with:
version: latest
- run: pnpm i --frozen-lockfile
- name: Changelog
uses: scottbrenner/generate-changelog-action@master
id: Changelog
with:
exclude: chore
env:
REPO: ${{ github.repository }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
${{ steps.Changelog.outputs.changelog }}
draft: false
prerelease: false