Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

publishes version 2.4.1 #54

publishes version 2.4.1

publishes version 2.4.1 #54

Workflow file for this run

name: Create Release
on:
push:
tags:
- 'v*'
- '!v**-beta.*'
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: |
See [CHANGELOG](CHANGELOG.md)
draft: false
prerelease: false