Commit a84e69e 1 parent a0e9c3f commit a84e69e Copy full SHA for a84e69e
File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -70,11 +70,14 @@ class GitLabReleasesInfoProvider(Processor):
70
70
},
71
71
}
72
72
output_variables = {
73
- "url " : {
73
+ "direct_asset_url " : {
74
74
"description" : (
75
75
"direct_asset_url matching the `link_regex` and/or `latest` inputs."
76
76
)
77
77
},
78
+ "url" : {
79
+ "description" : ("url matching the `link_regex` and/or `latest` inputs." )
80
+ },
78
81
"version" : {
79
82
"description" : (
80
83
"Version based on the release tag_name. (Strips `v` prefix)"
@@ -132,7 +135,8 @@ def main(self):
132
135
release , link = self .get_release_link (
133
136
releases , regex = self .env .get ("link_regex" )
134
137
)
135
- self .env ["url" ] = link .get ("direct_asset_url" )
138
+ self .env ["url" ] = link .get ("url" )
139
+ self .env ["direct_asset_url" ] = link .get ("direct_asset_url" )
136
140
137
141
# Get the version from the tag name
138
142
tag_name = release ["tag_name" ]
You can’t perform that action at this time.
0 commit comments