Skip to content

Add Stack 3.1.1

Add Stack 3.1.1 #23

Workflow file for this run

name: "/release"
on:
push:
tags:
- v*.*.*
jobs:
release:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') # only run on "releases" (pushes to tags)
steps:
- uses: actions/checkout@v4
- run: git show HEAD --format='%s%n%n%b' -s > .release_body
- uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
body_path: .release_body