Skip to content

Commit 1cdbb3a

Browse files
committed
Exclude ci.yaml when copying the bundle
1 parent 854ff9c commit 1cdbb3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ runs:
7373
7474
echo "🚀 Copying bundle"
7575
mkdir -p "operators/${{ inputs.name }}/${{ inputs.version }}"
76-
cp -r "${{ inputs.bundle-path-dir }}"/* "operators/${{ inputs.name }}/${{ inputs.version }}"
76+
rsync -av --exclude="ci.yaml" "${{ inputs.bundle-path-dir }}/" "operators/${{ inputs.name }}/${{ inputs.version }}"
7777
7878
echo "🚀 Copying ci.yaml"
7979
cp "${{ inputs.ci-path-file }}" "operators/${{ inputs.name }}/"

0 commit comments

Comments
 (0)