publish github release #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish github release | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseversion: | |
description: 'Release version' | |
required: true | |
default: '3.7.0' | |
jobs: | |
publish-github-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate changelog | |
id: changelog | |
uses: metcalfc/[email protected] | |
with: | |
myToken: ${{ secrets.GH_TOKEN }} | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
tag_name: ${{ github.event.inputs.releaseversion }} | |
release_name: ${{ github.event.inputs.releaseversion }} | |
body: | | |
### Things that changed in this release | |
${{ steps.changelog.outputs.changelog }} | |
draft: false | |
prerelease: ${{ contains(github.event.inputs.releaseversion, '-') }} |