diff --git a/scripts/prep-build-for-deploy-from-github-actions.sh b/scripts/prep-build-for-deploy-from-github-actions.sh index fc7ecbed434..c19293214a2 100755 --- a/scripts/prep-build-for-deploy-from-github-actions.sh +++ b/scripts/prep-build-for-deploy-from-github-actions.sh @@ -15,6 +15,6 @@ echo $JAR_VERSION # Create a deployment folder, and a folder for the branch. mkdir deploy # Add the JAR file. -cp application/target/*-shaded.jar deploy/otp-$JAR_VERSION.jar -cp application/target/*-shaded.jar deploy/otp-latest-$BRANCH.jar +cp shaded-jar/target/*-shaded.jar deploy/otp-$JAR_VERSION.jar +cp shaded-jar/target/*-shaded.jar deploy/otp-latest-$BRANCH.jar diff --git a/smoke-tests/Makefile b/smoke-tests/Makefile index ca800b1d69d..438359add28 100644 --- a/smoke-tests/Makefile +++ b/smoke-tests/Makefile @@ -1,7 +1,7 @@ CURL:=curl -L -\# --fail --create-dirs otp.jar: - cp ../application/target/otp-*-SNAPSHOT-shaded.jar otp.jar + cp ../shaded-jar/target/otp-*-SNAPSHOT-shaded.jar otp.jar atlanta/osm.pbf: ${CURL} http://osm.ibi-transit.com/vex/33.654066160697056,-84.759521484375,33.994611584814606,-84.30976867675781.pbf -o $@