1
0
mirror of https://github.com/tektoncd/catalog.git synced 2024-11-21 05:55:35 +00:00

Fix small issue with gcs-download README

Prior to this commit an example in the readme for gcs-download
referenced a Task that didn't exist.

This commit updates the broken taskRef to point to the correctly
named Task.
This commit is contained in:
Scott 2022-01-05 08:37:14 -05:00 committed by tekton-robot
parent 77b3f9a16b
commit ae02f26988

View File

@ -82,7 +82,7 @@ spec:
value: "true" value: "true"
- name: print-readme - name: print-readme
taskRef: taskRef:
name: cat-readme name: cat-file
runAfter: runAfter:
- copy-files # required to ensure copy occurs before cat - copy-files # required to ensure copy occurs before cat
workspaces: workspaces:
@ -122,4 +122,4 @@ spec:
- name: shared-workspace - name: shared-workspace
persistentVolumeClaim: persistentVolumeClaim:
claimName: workspace-pvc claimName: workspace-pvc
``` ```