mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
Merge pull request #3114 from serverless/fix-dotnet-path-casing
Fix dotnet path casing
This commit is contained in:
commit
84f2964e0d
@ -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/**
|
||||
|
||||
@ -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/**
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user