Skip to content

Commit

Permalink
Merge pull request #491 from coderatul/issue#376
Browse files Browse the repository at this point in the history
solving issue #376 added changelog.md and modified workflow-> blank.y…
  • Loading branch information
amogorkon authored May 12, 2023
2 parents b38d010 + 5880462 commit 065bbbc
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 065bbbc

Please sign in to comment.