https://github.com/milankomaj/releases-x
Composite action to create a release.
https://github.com/milankomaj/releases-x
composite-action create github-actions marketplace publish releases
Last synced: 7 months ago
JSON representation
Composite action to create a release.
- Host: GitHub
- URL: https://github.com/milankomaj/releases-x
- Owner: milankomaj
- License: mit
- Created: 2022-10-29T17:55:02.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T23:15:46.000Z (about 1 year ago)
- Last Synced: 2024-10-14T09:43:21.620Z (12 months ago)
- Topics: composite-action, create, github-actions, marketplace, publish, releases
- Homepage: https://github.com/marketplace/actions/releases-x
- Size: 189 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: .github/README.md
- License: LICENSE
Awesome Lists containing this project
README
# releases-x
> #### Composite action to create a release.
> ``` - uses: milankomaj/releases-x@v0.1 ```**with:** | *required* | *default* | *optional*
---: | :---: | :--- | :---:
GITHUB_TOKEN: |**true**| |
target: | false | `master` | ✅
title: | false | `${{ github.repository }}` | ✅
tag: | false | `v.0.${{ github.run_id }}.${{runner.os}}` | ✅
rewrite: | false | `false` | ✅
files: | false | Source code (zip, tar.gz) | ✅---
> ###### minimal example
```YAML
- uses: milankomaj/releases-x@v0.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```> ###### full example
```YAML
- uses: milankomaj/releases-x@v0.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
target: master
title: relase
tag: v0.2
rewrite: true
files: |
${{ github.workspace }}/.github/workflows/*.yml \
${{ github.workspace }}/*.yml
```
---