Files
label-actions/.github/workflows/release.yml
2025-12-12 15:28:38 +02:00

23 lines
554 B
YAML

name: Create release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
release:
name: Release on GitHub
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- name: Create GitHub release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
body: >
Learn more about this release from the [changelog](https://github.com/dessant/label-actions/blob/main/CHANGELOG.md#changelog).
draft: true