We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47215b4 commit 1364c30Copy full SHA for 1364c30
action.yml
@@ -76,12 +76,11 @@ runs:
76
git reset --hard upstream/main
77
78
echo "🚀 Copying bundle"
79
- CI_YAML="${ROOT_DIR}/${{ inputs.ci-path-file }}"
80
mkdir -p "operators/${{ inputs.name }}/${{ inputs.version }}"
81
- rsync -av --exclude="${CI_YAML}" "${ROOT_DIR}/${{ inputs.bundle-path-dir }}/" "operators/${{ inputs.name }}/${{ inputs.version }}"
+ rsync -av --exclude="ci.yaml" "${ROOT_DIR}/${{ inputs.bundle-path-dir }}/" "operators/${{ inputs.name }}/${{ inputs.version }}"
82
83
echo "🚀 Copying ci.yaml"
84
- cp "${CI_YAML}" "operators/${{ inputs.name }}/"
+ cp "${ROOT_DIR}/${{ inputs.ci-path-file }}" "operators/${{ inputs.name }}/"
85
86
echo "🚀 Submitting PR"
87
git add .
0 commit comments