Skip to content

Release

Release #17

Workflow file for this run

name: Release
on: [workflow_dispatch]
jobs:
tag:
runs-on: ubuntu-latest
outputs:
new_tag: ${{ steps.tag_version.outputs.new_tag }}
upload_url: ${{ steps.release_action.outputs.upload_url }}
steps:
- uses: actions/checkout@v2
- name: Push Tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create a GitHub release
uses: ncipollo/release-action@v1
id: release_action
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
draft: false