Compare commits

...

3 commits

Author SHA1 Message Date
Ell
d7282c256b fixed CI 2023-05-22 15:40:42 +02:00
Ell
86d2735faa 1.5.4 2023-05-22 15:32:50 +02:00
Ell
cb4bbb0a0c updated ncbeauty 2023-05-22 15:31:57 +02:00
3 changed files with 4 additions and 5 deletions

View file

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

View file

@ -15,7 +15,7 @@
<PackageIcon>Logo.png</PackageIcon>
<PackAsTool>true</PackAsTool>
<ToolCommandName>gamebundle</ToolCommandName>
<VersionPrefix>1.5.3</VersionPrefix>
<VersionPrefix>1.5.4</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,8 +19,7 @@ pipeline {
branch 'main'
}
steps {
sh '''dotnet nuget push -s http://localhost:5000/v3/index.json **/*.nupkg -k $BAGET -n true
'''
sh 'dotnet nuget push -s http://localhost:5000/v3/index.json **/*.nupkg -k $BAGET -n'
}
}