File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 30
30
run ("pip install -e ." )
31
31
32
32
run ("jupyter-releaser prep-git" )
33
+
34
+ # Capture the "since" argument in case we add tags before the second
35
+ # "Check Changelog"
36
+ # Do this before bumping the version
37
+ curr_dir = os .getcwd ()
38
+ os .chdir (CHECKOUT_NAME )
39
+ os .environ .setdefault ("RH_SINCE" , get_latest_tag (os .environ ["RH_BRANCH" ]))
40
+ os .chdir (curr_dir )
41
+
33
42
run ("jupyter-releaser bump-version" )
34
43
35
44
if check_release :
40
49
41
50
run ("jupyter-releaser check-changelog" )
42
51
43
- # Capture the "since" argument in case we add tags before the second
44
- # "Check Changelog"
45
- curr_dir = os .getcwd ()
46
- os .chdir (CHECKOUT_NAME )
47
- os .environ .setdefault ("RH_SINCE" , get_latest_tag (os .environ ["RH_BRANCH" ]))
48
- os .chdir (curr_dir )
49
-
50
52
# Make sure npm comes before python in case it produces
51
53
# files for the python package
52
54
run ("jupyter-releaser build-npm" )
You can’t perform that action at this time.
0 commit comments