Skip to content

Release and upload artifacts #4

Release and upload artifacts

Release and upload artifacts #4

Workflow file for this run

name: Release and upload artifacts
permissions:
contents: write
discussions: write
on: workflow_dispatch
jobs:
release:
name: Release
runs-on: [ubuntu-latest]
outputs:
new_tag: ${{ steps.tag_version.outputs.new_tag }}
steps:
- uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: ""
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}