Skip to content

Commit 95b14a7

Browse files
author
Steven Silvester
authored
Merge pull request #195 from jtpio/default-branch
Remove default branch logic
2 parents e6f503c + aebdf19 commit 95b14a7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

jupyter_releaser/actions/publish_release.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@
22
# Distributed under the terms of the Modified BSD License.
33
import os
44

5-
from jupyter_releaser.util import get_default_branch
65
from jupyter_releaser.util import run
76

87
release_url = os.environ["release_url"]
9-
default_branch = get_default_branch()
108

119
if release_url:
1210
run(f"jupyter-releaser extract-release {release_url}")
13-
run(
14-
f"jupyter-releaser forwardport-changelog {release_url} --branch {default_branch}"
15-
)
11+
run(f"jupyter-releaser forwardport-changelog {release_url}")
1612

1713
run(f"jupyter-releaser publish-assets {release_url}")
1814

0 commit comments

Comments
 (0)