Merge pull request #3114 from serverless/fix-dotnet-path-casing

Fix dotnet path casing
This commit is contained in:
Philipp Muens 2017-01-18 10:35:40 +01:00 committed by GitHub
commit 84f2964e0d
3 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ provider:
# you can add packaging information here
package:
artifact: bin/Release/netcoreapp1.0/publish/deploy-package.zip
artifact: bin/release/netcoreapp1.0/publish/deploy-package.zip
# exclude:
# - exclude-me.js
# - exclude-me-dir/**

View File

@ -46,7 +46,7 @@ provider:
# you can add packaging information here
package:
artifact: bin/Release/netcoreapp1.0/publish/deploy-package.zip
artifact: bin/release/netcoreapp1.0/publish/deploy-package.zip
# exclude:
# - exclude-me.js
# - exclude-me-dir/**

View File

@ -8,7 +8,7 @@ function integration-test {
$DIR/integration-test-template $@
}
integration-test aws-csharp 'apt-get -qq update && apt-get -qq -y install zip && dotnet restore && dotnet publish -c release && pushd bin/Release/netcoreapp1.0/publish && zip -r ./deploy-package.zip ./* && popd'
integration-test aws-csharp 'apt-get -qq update && apt-get -qq -y install zip && dotnet restore && dotnet publish -c release && pushd bin/release/netcoreapp1.0/publish && zip -r ./deploy-package.zip ./* && popd'
integration-test aws-java-gradle ./gradlew build
integration-test aws-java-maven mvn package
integration-test aws-scala-sbt sbt assembly