Skip to content

Merge branch 'release/1.3.0' #13

Merge branch 'release/1.3.0'

Merge branch 'release/1.3.0' #13

Workflow file for this run

on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
name: Create Release
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Read CHANGELOG.latest.md
id: changelog
uses: juliangruber/read-file-action@v1
with:
path: ./CHANGELOG.latest.md
- name: Create Release ${{ github.ref }}
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.changelog.outputs.content }}
draft: false
prerelease: false