Skip to content

Commit

Permalink
solving issue amogorkon#376 added changelog.md and modified workflow-…
Browse files Browse the repository at this point in the history
…> blank.yaml file
  • Loading branch information
coderatul committed May 12, 2023
1 parent b38d010 commit 5880462
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,32 @@ jobs:



name: Create Release

on:
push:
tags:
- '*.*.*'

jobs:
build:
name: Create release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Extract release notes
id: extract-release-notes
uses: ffurrer2/extract-release-notes@v1
- name: Create release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false
body: ${{ steps.extract-release-notes.outputs.release_notes }}


Empty file added CHANGELOG.md
Empty file.

0 comments on commit 5880462

Please sign in to comment.