Fix file path for upload

This commit is contained in:
Tyler 2017-09-11 00:26:06 -04:00
parent 171df7ab30
commit a8f6044a06
1 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ package-i386:
- cd $CI_PROJECT_DIR
- ARCH=i386 packaging/build-package.sh
- echo "Uploading to repository server"
- curl -X POST "$UPLOAD_URL" -F "file=@build/$ARCH/deb-simple_$VERSION.deb"
- curl -X POST "$UPLOAD_URL" -F "file=@build/i386/deb-simple_$VERSION.deb"
artifacts:
paths:
- build
@ -42,7 +42,7 @@ package-amd64:
- cd $CI_PROJECT_DIR
- ARCH=amd64 packaging/build-package.sh
- echo "Uploading to repository server"
- curl -X POST "$UPLOAD_URL" -F "file=@build/$ARCH/deb-simple_$VERSION.deb"
- curl -X POST "$UPLOAD_URL" -F "file=@build/amd64/deb-simple_$VERSION.deb"
artifacts:
paths:
- build
@ -54,7 +54,7 @@ package-armv7:
- cd $CI_PROJECT_DIR
- ARCH=armv7 packaging/build-package.sh
- echo "Uploading to repository server"
- curl -X POST "$UPLOAD_URL" -F "file=@build/$ARCH/deb-simple_$VERSION.deb"
- curl -X POST "$UPLOAD_URL" -F "file=@build/armv7/deb-simple_$VERSION.deb"
artifacts:
paths:
- build