Skip to content

Commit

Permalink
Created release notes runner
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidz00 committed Mar 28, 2024
1 parent 1cdcfae commit e6391db
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Generate Release Notes

on:
release:
types: [created]

jobs:
release-notes:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Generate Release Notes
id: release_notes
uses: actions/create-release-notes@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
This release has been automatically generated by a GitHub Action.
## Installation Instructions
For detailed installation instructions, please refer to the [Wiki](https://github.com/liquidz00/Patcher/wiki#installation) or the [README](https://github.com/liquidz00/Patcher/wiki#installation)
## Release notes
${{ steps.release_notes.outputs.release-notes }}
draft: false
prerelease: false

0 comments on commit e6391db

Please sign in to comment.