feat: Added support for the bot to self-restart on crash #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release and Auto Change Log | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
jobs: | |
release-and-create-changelog: | |
name: Automatic Release & Changelog Creator | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Auto Changelog | |
id: changelog | |
uses: ardalanamini/auto-changelog@v4.0.1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Release | |
uses: softprops/action-gh-release@v0.1.15 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
body: | | |
${{ steps.changelog.outputs.changelog }} |