Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pattersonbl2 committed Jul 13, 2023
1 parent 31373a2 commit 1aec368
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
workflow-dispatch:
name: Create Release

jobs:
build:
name: Create Release
runs-on: unbuntu-lateset
steps:
- name: ChangeLog
uses: scottbrenner/generate-changelog-action@master
id: ChangeLog
env:
REPO: ${{github.repository}}
- name: Checkout code
uses: actions/checkout@v2
- name: Create Release
uses: action/create-releases@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
tag_name: ${{github.ref}}
release_name: Hubs.${{github.ref}}
body: |
${{setps.Chnagelog.outputs.changelog}}

0 comments on commit 1aec368

Please sign in to comment.