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
Copy file name to clipboardExpand all lines: README.md
+43-4Lines changed: 43 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,13 @@ Common Concourse Pipeline Tasks
5
5
6
6
All examples use the following resources:
7
7
8
-
```
8
+
```yaml
9
9
resource_types:
10
10
- name: cf-cli-resource
11
11
type: docker-image
12
12
source:
13
-
repository: patrickcrocker/cf-cli-resource
14
-
tag: 2.0.0
13
+
repository: pivotalpa/cf-cli-resource
14
+
tag: latest
15
15
16
16
resources:
17
17
- name: pipeline-tasks
@@ -33,7 +33,7 @@ resources:
33
33
34
34
## Generate a Cloud Foundry Manifest
35
35
36
-
```
36
+
```yaml
37
37
- name: test
38
38
plan:
39
39
- aggregate:
@@ -57,3 +57,42 @@ resources:
57
57
path: artifact/myapp-*.jar
58
58
current_app_name: {{cf-test-app-name}}
59
59
```
60
+
61
+
## Generate release information
62
+
63
+
This example showcases tasks commonly used with [github-release](https://github.com/concourse/github-release-resource):
64
+
* `generate-github-release`: Generates a version string (ex: v1.0.0) for the `release-name` and `release-tag` files.
65
+
* `generate-commitish`: Generates the [commitish](https://stackoverflow.com/questions/23303549/what-are-commit-ish-and-tree-ish-in-git) file.
66
+
* `generate-release-notes`: Generates the release notes for a particular version by parsing a change log format based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
0 commit comments