1
0
Fork 0
This repository has been archived on 2024-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
Ellie-bot/.github/workflows/release.yml

18 lines
420 B
YAML
Raw Normal View History

2022-07-24 06:42:23 -07:00
name: Release from Changelog
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 }}