You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# conditional blocks not indented because of the heredoc
140
-
if [[ $VERSION == *.0 ]]; then
141
-
cat > /tmp/release-notes.txt << EOF
142
-
This release targets the OpenTelemetry SDK $sdk_version.
143
-
144
-
Note that many artifacts have the \`-alpha\` suffix attached to their version number, reflecting that they are still alpha quality and will continue to have breaking changes. Please see the [VERSIONING.md](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/VERSIONING.md#opentelemetry-java-instrumentation-versioning) for more details.
145
-
146
-
EOF
147
-
else
148
-
cat > /tmp/release-notes.txt << EOF
149
-
This is a patch release on the previous $PRIOR_VERSION release, fixing the issue(s) below.
150
-
151
-
EOF
152
-
fi
153
-
154
137
# CHANGELOG_SECTION.md is also used at the end of the release workflow
155
138
# for copying the change log updates to main
156
139
sed -n "0,/^## Version $VERSION /d;/^## Version /q;p" CHANGELOG.md \
@@ -159,7 +142,7 @@ jobs:
159
142
# the complex perl regex is needed because markdown docs render newlines as soft wraps
0 commit comments