We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cf297c commit 9d5b530Copy full SHA for 9d5b530
.github/workflows/generateUpdatesXml.py
@@ -15,7 +15,10 @@
15
buildRegex = r'.*(\d{3}).zip'
16
# given plugin-amazonq-3.39-SNAPSHOT-1731096007-241.zip,
17
# capture 3.39-SNAPSHOT-1731096007-241 in group 1
18
- versionRegex = r'.*?\-(\d.*-\d{3})\.zip'
+ # or
19
+ # given plugin-amazonq-3.39-SNAPSHOT-1731096007.241.zip,
20
+ # capture 3.39-SNAPSHOT-1731096007.241 in group 1
21
+ versionRegex = r'.*?\-(\d.*[.-]\d{3})\.zip$'
22
for asset in data['assets']:
23
name = asset['name']
24
if ('plugin-amazonq' in name):
0 commit comments