wip
This commit is contained in:
commit
f1d7d6accc
33 changed files with 1676 additions and 0 deletions
17
module/release/README.md
Normal file
17
module/release/README.md
Normal 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
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue