1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Chore: add action for performing github release

This commit is contained in:
Christopher Kolstad 2021-01-26 11:53:02 +01:00
parent 73f54e8288
commit 41c7f94132
No known key found for this signature in database
GPG Key ID: 319DE53FE911815A

26
.github/workflows/release_changelog.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: 'Releases'
on:
push:
tags:
- 'v*'
jobs:
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build changelog
id: github_release
uses: metcalfc/changelog-generator@v0.4.4
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Create release
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.github_release.outputs.changelog }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}