Create release.yml

This commit is contained in:
Emotion 2022-07-25 01:41:15 +12:00 committed by GitHub
parent 85f80403d8
commit 760ad465f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: Release from Changelog
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
push:
tags:
- "v*"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
release_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Generate GitHub Release
uses: lsegal/github-release-from-changelog-action@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}