Skip to content

Commit

Permalink
Use absolute path of UPLOAD_FOLDER
Browse files Browse the repository at this point in the history
  • Loading branch information
Khang-NT committed Apr 8, 2018
1 parent 756eccd commit 511f1fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ jobs:
- run:
name: Create Github Release
command: |
export UPLOAD_FOLDER="uploads" && mkdir -p $UPLOAD_FOLDER;
export UPLOAD_FOLDER="$(pwd)/uploads" && mkdir -p $UPLOAD_FOLDER;
cd artifacts;
for f in ./*; do
for f in *; do
tar -cjf $UPLOAD_FOLDER/$f-full.tar.bz2 -C $f/full .;
tar -cjf $UPLOAD_FOLDER/$f-lite.tar.bz2 -C $f/lite .;
done;
Expand Down

0 comments on commit 511f1fa

Please sign in to comment.