Skip to content

Release

Release #7

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*.*.*'
permissions:
contents: write
jobs:
build:
name: Make a release for release tag
runs-on: ubuntu-latest
steps:
- name: Check out code from GitHub
uses: actions/checkout@v4
- name: Make release
uses: softprops/action-gh-release@v2
with:
body: |
Small summary
**Changes:**
- Change 1
- Change 2
**Important notes:**
Why is this important
draft: true
generate_release_notes: true