Skip to content

Commit 842c46e

Browse files
committed
remove folders from build executable dir
1 parent 52c2b29 commit 842c46e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.circleci/config.pkl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,8 @@ jobs {
148148
command = #"""
149149
# exclude build_artifacts.txt from publish
150150
rm -f pkl-cli/build/executable/*.build_artifacts.txt
151+
find pkl-cli/build/executable/* -type d | xargs rm -rf
152+
rm -f pkl-cli/build/executable/resources
151153
gh release create "${CIRCLE_TAG}" \
152154
--title "${CIRCLE_TAG}" \
153155
--target "${CIRCLE_SHA1}" \

.circleci/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -735,6 +735,8 @@ jobs:
735735
command: |-
736736
# exclude build_artifacts.txt from publish
737737
rm -f pkl-cli/build/executable/*.build_artifacts.txt
738+
find pkl-cli/build/executable/* -type d | xargs rm -rf
739+
rm -f pkl-cli/build/executable/resources
738740
gh release create "${CIRCLE_TAG}" \
739741
--title "${CIRCLE_TAG}" \
740742
--target "${CIRCLE_SHA1}" \

0 commit comments

Comments
 (0)