Skip to content

Commit

Permalink
feat: generate GitHub release for tags
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Nov 20, 2024
1 parent 346145f commit 5a93a42
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright © Michal Čihař <[email protected]>
#
# SPDX-License-Identifier: MIT

name: Release

on:
push:
tags:
- '*'

jobs:
create_release:
runs-on: ubuntu-24.04
name: Create release on GitHub
permissions:
contents: write
steps:
- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true

0 comments on commit 5a93a42

Please sign in to comment.