Skip to content
This repository has been archived by the owner on Jun 26, 2022. It is now read-only.

Commit

Permalink
Updated the realease to 0.6-beta and fixes the deploy configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
roysanchez committed Nov 29, 2018
1 parent d54a210 commit 3d25063
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -258,4 +258,8 @@ paket-files/

# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
*.pyc

# Travis-CI
.tools/
.sonarqube/
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ addons:
sonarcloud:
organization: "roysanchez-github"
install:
- dotnet tool install dotnet-sonarscanner --version 4.4.2 --tool-path tools
- dotnet tool install dotnet-sonarscanner --version 4.4.2 --tool-path .tools
- dotnet restore
script:
- $TRAVIS_BUILD_DIR/tools/dotnet-sonarscanner begin /k:"roysanchez_ServForOracle.NetCore" /n:"ServForOracle.NetCore" /d:sonar.login="$SONAR_TOKEN" /d:sonar.host.url="https://sonarcloud.io"
- $TRAVIS_BUILD_DIR/.tools/dotnet-sonarscanner begin /k:"roysanchez_ServForOracle.NetCore" /n:"ServForOracle.NetCore" /d:sonar.login="$SONAR_TOKEN" /d:sonar.host.url="https://sonarcloud.io"
- dotnet build
- $TRAVIS_BUILD_DIR/tools/dotnet-sonarscanner end /d:sonar.login="$SONAR_TOKEN"
- $TRAVIS_BUILD_DIR/.tools/dotnet-sonarscanner end /d:sonar.login="$SONAR_TOKEN"
notifications:
email: false
deploy:
Expand Down
2 changes: 1 addition & 1 deletion ServForOracle.NetCore/ServForOracle.NetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<LangVersion>7.1</LangVersion>
<PackageId>ServForOracle.NetCore</PackageId>
<ProjectGuid>{9A19103F-16F7-4668-BE54-9A1E7A4F7556}</ProjectGuid>
<Version>0.5-beta</Version>
<Version>0.6-beta</Version>
<Title>ServForOracle.NetCore - Oracle Package and Type wrapper for .NET</Title>
<Authors>Roy Sánchez</Authors>
<Description>A wrapper over Oracle ODP.NET to make easier the calls to packages and enable the use of UDTs (User Define Types)</Description>
Expand Down
4 changes: 2 additions & 2 deletions nuget-deploy.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dotnet pack ServForOracle.NetCore --include-source --include-symbols --no-build -o $TRAVIS_BUILD_DIR
nuget push ServForOracle.NetCore.nupkg -source https://api.nuget.org/v3/index.json
dotnet pack ServForOracle.NetCore --include-source -o $TRAVIS_BUILD_DIR
dotnet nuget push ServForOracle.NetCore.*.nupkg --source https://api.nuget.org/v3/index.json --api-key $NUGET_TOKEN

0 comments on commit 3d25063

Please sign in to comment.