Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Landon Wu
VuhDo
Commits
c7d8e6fa
Commit
c7d8e6fa
authored
5 years ago
by
Ivaria
Browse files
Options
Download
Plain Diff
Merge branch 'master' into classic
parents
0ef8f80d
be916af8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
1 deletion
+19
-1
.release/release.sh
.release/release.sh
+19
-1
No files found.
.release/release.sh
View file @
c7d8e6fa
...
...
@@ -2299,6 +2299,7 @@ if [ -z "$skip_upload" ]; then
cp "$changelog_githost" "$_changelog_githost"
changelog_githost="$_changelog_githost"
if [[ -n "$slug" || -n "$addonid" ]]; then
echo -en "\n\nGet it from " >> "$changelog_githost"
...
...
@@ -2482,11 +2483,28 @@ if [ -z "$skip_upload" ]; then
# delete existing release for the tag
curl
-sS
-X
DELETE
-H
"PRIVATE-TOKEN:
$gitlab_token
"
"https://gitlab.vuhdo.io/api/v4/projects/
$gitlab_id
/releases/
$tag
"
>
/dev/null
_gl_payload_desc
=
$(
cat
"
$changelog_githost
"
| jq
--slurp
--raw-input
'.'
|
awk
-F
'--------------------------------------------------------------'
'{print $1 FS "."}'
|
sed
-e
's/.\{63\}$/"/'
)
if
[[
-n
"
$slug
"
||
-n
"
$addonid
"
]]
;
then
_gl_payload_desc
=
"
$_gl_payload_desc
"
'\nGet it from '
if
[
-n
"
$slug
"
]
;
then
_gl_payload_desc
=
"
$_gl_payload_desc
""[
$project_site_name
](
$project_site
/projects/
$slug
)"
fi
if
[[
-n
"
$slug
"
&&
-n
"
$addonid
"
]]
;
then
_gl_payload_desc
=
"
$_gl_payload_desc
or "
fi
if
[
-n
"
$addonid
"
]
;
then
_gl_payload_desc
=
"
$_gl_payload_desc
""[WoWInterface](https://www.wowinterface.com/downloads/info
$addonid
.html)"
fi
_gl_payload_desc
=
"
$_gl_payload_desc
\n
"
fi
_gl_payload
=
$(
cat
<<-
EOF
{
"tag_name": "
$tag
",
"name": "
$tag
",
"description":
$(
cat
"
$changelog_githost
"
| jq
--slurp
--raw-input
'.'
|
awk
-F
'--------------------------------------------------------------'
'{print $1 FS "."}'
|
sed
-e
's/.\{63\}$/"/'
)
,
"description":
"
$_gl_payload_desc
"
,
"assets": {"links":[
$gitlab_assets
]}
}
EOF
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment