Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Sublime Music
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
117
Issues
117
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
2
Merge Requests
2
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sublime Music
Sublime Music
Commits
495abc3d
Verified
Commit
495abc3d
authored
Feb 20, 2020
by
Sumner Evans
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added ability to specify milestone for a version
parent
04cf4300
Pipeline
#119802407
passed with stages
in 14 minutes and 43 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
CHANGELOG.rst
CHANGELOG.rst
+2
-0
cicd/publish-gitlab-release.sh
cicd/publish-gitlab-release.sh
+10
-0
No files found.
CHANGELOG.rst
View file @
495abc3d
v0.8.12
=======
:Milestone: Beta 3
* When album cover art is not provided by the server, a default album art image
is used (Contributed by @sentriz.)
* **New Setting**: *Serve locally cached files over the LAN to Chromecast
...
...
cicd/publish-gitlab-release.sh
View file @
495abc3d
...
...
@@ -15,6 +15,10 @@ if [[ $(head -n 1 CHANGELOG.rst) == "${CI_COMMIT_TAG}" ]]; then
fi
first
=
0
fi
if
[[
"
${
l
:0:11
}
"
==
":Milestone:"
]]
;
then
milestone
=
"
$(
echo
$l
|
sed
-n
's/:Milestone: \(.*\)/\1/p'
)
"
fi
done
< CHANGELOG.rst
# i is now the index of the line below the second header.
...
...
@@ -30,6 +34,11 @@ fi
description
=
$(
echo
"
$description
"
| rst2html5
--no-indent
--template
"{body}"
|
sed
-e
's/\"/\\\"/g'
)
milestones
=
""
if
[[
"
${
milestone
}
"
!=
""
]]
;
then
milestones
=
",
\"
milestones
\"
:[
\"
${
milestone
}
\"
]"
fi
# Determine whether or not to include the Flatpak build.
failed
=
$(
curl
\
--header
"PRIVATE-TOKEN:
${
RELEASE_PUBLISH_TOKEN
}
"
\
...
...
@@ -57,6 +66,7 @@ data="
\"
name
\"
:
\"
${
CI_COMMIT_TAG
}
\"
,
\"
tag_name
\"
:
\"
${
CI_COMMIT_TAG
}
\"
,
\"
description
\"
:
\"
${
description
}
\"
${
milestones
}
${
assets
}
}
"
...
...
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