Skip to content

Merge pull request #68 from shgysk8zer0/patch/cleanup #33

Merge pull request #68 from shgysk8zer0/patch/cleanup

Merge pull request #68 from shgysk8zer0/patch/cleanup #33

Workflow file for this run

on:
push:
# Sequence of patterns matched against refs/tags
tags:
# Push events to matching v*, i.e. v1.0, v20.15.10
- 'v*'
name: Create GitHub Release
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
# This token is provided by Actions, you do not need to create your own token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: "See [Changelog](https://github.com/${{ github.repository }}/blob/master/CHANGELOG.md)"
draft: false
prerelease: false