File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
- ' src/**'
10
10
- ' tests/**'
11
11
schedule :
12
- # every weekday at 9 :00 AM PST
12
+ # every weekday at 17 :00 UTC
13
13
- cron : ' 0 17 * * 1-5'
14
14
15
15
jobs :
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ def get_version_increment_type(last_version):
38
38
return parsed_subjects .increment_type ()
39
39
40
40
41
- def pull_latest_and_verify (expected_version_tag ):
42
- check_output (["git" , "pull " ])
41
+ def fetch_latest_and_verify (expected_version_tag ):
42
+ check_output (["git" , "fetch " ])
43
43
latest_version = get_current_version ()
44
44
if latest_version != expected_version_tag :
45
45
raise ValueError (f"Expected { expected_version_tag } to be latest tag, but was { latest_version } " )
@@ -73,7 +73,7 @@ def release():
73
73
tag_created = manager .create_release ()
74
74
75
75
# pull the new tag that was just created
76
- pull_latest_and_verify (tag_created )
76
+ fetch_latest_and_verify (tag_created )
77
77
78
78
79
79
def main ():
You can’t perform that action at this time.
0 commit comments