You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
583 B
25 lines
583 B
apiVersion: tekton.dev/v1beta1 |
|
kind: Task |
|
metadata: |
|
name: cleanup-workspace |
|
spec: |
|
params: |
|
- name: cleanup |
|
type: string |
|
default: true |
|
description: Should we actually cleanup the sources dir |
|
- name: clear-dir |
|
type: string |
|
|
|
workspaces: |
|
- name: sources |
|
description: Where we checked out our sources |
|
|
|
steps: |
|
- name: perform-buildid-scan |
|
image: registry.access.redhat.com/ubi9/ubi:9.2-696 |
|
|
|
script: | |
|
#!/bin/bash |
|
echo "Clearing up sources form $(params.clear-dir)" |
|
rm -rv /workspace/sources/$(params.clear-dir)
|
|
|