Compare commits

..

No commits in common. "d7282c256b5acd78ff3e778f50f0f1977e0c2aa9" and "01dcd0ed235febd3a37ace0f5f05435d42e6e348" have entirely different histories.

3 changed files with 5 additions and 4 deletions

View file

@ -3,7 +3,7 @@
"isRoot": true, "isRoot": true,
"tools": { "tools": {
"nulastudio.ncbeauty": { "nulastudio.ncbeauty": {
"version": "1.2.9.5", "version": "1.2.9.3",
"commands": [ "commands": [
"ncbeauty" "ncbeauty"
] ]

View file

@ -15,7 +15,7 @@
<PackageIcon>Logo.png</PackageIcon> <PackageIcon>Logo.png</PackageIcon>
<PackAsTool>true</PackAsTool> <PackAsTool>true</PackAsTool>
<ToolCommandName>gamebundle</ToolCommandName> <ToolCommandName>gamebundle</ToolCommandName>
<VersionPrefix>1.5.4</VersionPrefix> <VersionPrefix>1.5.3</VersionPrefix>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

5
Jenkinsfile vendored
View file

@ -9,7 +9,7 @@ pipeline {
stage('Pack') { stage('Pack') {
steps { steps {
sh 'find . -type f -name "*.nupkg" -delete' sh 'find . -type f -name \\\'*.nupkg\\\' -delete'
sh 'dotnet pack **/GameBundle.csproj --version-suffix ${BUILD_NUMBER}' sh 'dotnet pack **/GameBundle.csproj --version-suffix ${BUILD_NUMBER}'
} }
} }
@ -19,7 +19,8 @@ pipeline {
branch 'main' branch 'main'
} }
steps { steps {
sh 'dotnet nuget push -s http://localhost:5000/v3/index.json **/*.nupkg -k $BAGET -n' sh '''dotnet nuget push -s http://localhost:5000/v3/index.json **/*.nupkg -k $BAGET -n true
'''
} }
} }