mirror of
https://github.com/dessant/label-actions.git
synced 2026-03-13 01:27:03 -04:00
23 lines
554 B
YAML
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
|