17 lines
520 B
Markdown
17 lines
520 B
Markdown
# 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
|
|
```
|