Files
label-actions/.github/workflows/release.yml
2022-12-04 03:25:15 +02:00

22 lines
534 B
YAML

name: Create release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
release:
name: Release on GitHub
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: Create GitHub release
uses: softprops/action-gh-release@v1
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/master/CHANGELOG.md#changelog).