You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 10, 2019. It is now read-only.
A quick plugin to cover specific use case: create releases in GitHub and upload files for them. The plugin also allows to do more complex actions overriding the command manually.
4
+
5
+
## Basic usage
6
+
7
+
This example creates a release and uploads files to it:
8
+
9
+
```
10
+
github_prerelease:
11
+
image: codefresh/cfstep-github-release
12
+
environment:
13
+
- GITHUB_TOKEN=${{GITHUB_TOKEN}}
14
+
- FILES=bin/app-*
15
+
- PRERELEASE=true
16
+
```
17
+
## Advanced usage
18
+
19
+
If one wants to do more actions to manage releases than just to create them, it is possible to override the behaviour with custom commands:
0 commit comments