This commit is contained in:
Louis Seubert 2026-02-12 21:18:29 +01:00
commit 3076a957bc
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
33 changed files with 1653 additions and 0 deletions

17
module/release/README.md Normal file
View file

@ -0,0 +1,17 @@
# release
## Usage
```yml
uses: actions/core/module/release@1.0.0
with:
repository: ${{ github.server_url }}/${{ github.repository }}
version: ${{ github.ref_name }}
draft: false # or pattern to match agains version e.g. '\d+\.\d+\.\d+'
prerelease: false # or pattern to match agains version e.g. '.*-rc\.\d+'
title: Release ${{ github.ref_name }}
notes: ${{ steps.changelog.outputs.changelog }}
attachments: |
${{ github.workspace }}/build/*.zip
!${{ github.workspace }}/build/exclude-*.zip
```