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,
"tools": {
"nulastudio.ncbeauty": {
"version": "1.2.9.5",
"version": "1.2.9.3",
"commands": [
"ncbeauty"
]

View file

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

5
Jenkinsfile vendored
View file

@ -9,7 +9,7 @@ pipeline {
stage('Pack') {
steps {
sh 'find . -type f -name "*.nupkg" -delete'
sh 'find . -type f -name \\\'*.nupkg\\\' -delete'
sh 'dotnet pack **/GameBundle.csproj --version-suffix ${BUILD_NUMBER}'
}
}
@ -19,7 +19,8 @@ pipeline {
branch 'main'
}
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
'''
}
}