4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-05-08 19:29:35 +00:00

added git step for releaser

This commit is contained in:
Andrei Yankovich 2021-10-25 18:37:22 +03:00
parent 4912a5ac56
commit 0eba1ff7e7

@ -22,6 +22,20 @@ class Releaser(Make):
prodName = str(props.getProperty('prodName'))
return baseUrl + prodName
factory.addStep(
steps.Git(
repourl=util.Interpolate('%(prop:repository)s'),
branch=util.Interpolate('%(prop:branch)s'),
mode='full',
method='fresh',
clobberOnFailure=True,
submodules=False,
retryFetch=True,
name='git operations',
description='operations of git like pull clone fetch',
)
)
factory.addStep(
self.generateStep(["wget", getUrl],
self.platform,