Update Jenkinsfile

This commit is contained in:
Garry Newman 2019-04-30 17:07:33 +01:00
parent 4160e72141
commit 8916161464

6
Jenkinsfile vendored
View File

@ -14,8 +14,8 @@ node ( 'vs2017' )
stage 'Archive'
archiveArtifacts artifacts: 'Facepunch.Steamworks/bin/**/*'
bat( "copy /Y 'Facepunch.Steamworks/bin/Debug/netstandard2.0/Facepunch.Steamworks.dll' 'UnityPlugin/'" )
bat( "copy /Y 'Facepunch.Steamworks/bin/Debug/netstandard2.0/Facepunch.Steamworks.pdb' 'UnityPlugin/'" )
bat( "copy /Y 'Facepunch.Steamworks/bin/Debug/netstandard2.0/Facepunch.Steamworks.xml' 'UnityPlugin/'" )
bat( "copy /Y 'Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.dll' 'UnityPlugin\\'" )
bat( "copy /Y 'Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.pdb' 'UnityPlugin\\'" )
bat( "copy /Y 'Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.xml' 'UnityPlugin\\'" )
archiveArtifacts unityplugin: 'UnityPlugin/**/*'
}