Skip to content

Commit 511f1fa

Browse files
committed
Use absolute path of UPLOAD_FOLDER
1 parent 756eccd commit 511f1fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ jobs:
7474
- run:
7575
name: Create Github Release
7676
command: |
77-
export UPLOAD_FOLDER="uploads" && mkdir -p $UPLOAD_FOLDER;
77+
export UPLOAD_FOLDER="$(pwd)/uploads" && mkdir -p $UPLOAD_FOLDER;
7878
cd artifacts;
79-
for f in ./*; do
79+
for f in *; do
8080
tar -cjf $UPLOAD_FOLDER/$f-full.tar.bz2 -C $f/full .;
8181
tar -cjf $UPLOAD_FOLDER/$f-lite.tar.bz2 -C $f/lite .;
8282
done;

0 commit comments

Comments
 (0)