Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F10341887
Jenkinsfile
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
Jenkinsfile
View Options
pipeline
{
agent
{
label
"node"
}
stages
{
stage
(
'Doc'
)
{
steps
{
git
'https://devcentral.nasqueron.org/source/docs-www.git'
sh
'''
npm install
npm run build
cd dist
tar czf ../www-nasqueron-docs.tar.gz *
'''
}
post
{
success
{
archiveArtifacts
artifacts:
'www-nasqueron-docs.tar.gz'
}
}
}
stage
(
'Publish'
)
{
steps
{
sshPublisher
(
failOnError:
true
,
publishers:
[
sshPublisherDesc
(
configName:
'ysul-deploy'
,
transfers:
[
sshTransfer
(
sourceFiles:
'www-nasqueron-docs.tar.gz'
,
remoteDirectory:
'workspace'
,
cleanRemote:
true
,
execCommand:
'tar xzvf workspace/www-nasqueron-docs.tar.gz -C /var/wwwroot/nasqueron.org/docs/'
)
]
)
]
)
}
}
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Jul 2, 21:28 (2 h, 38 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2779809
Default Alt Text
Jenkinsfile (1 KB)
Attached To
Mode
rDWWW Nasqueron documentation
Attached
Detach File
Event Timeline
Log In to Comment