File tree 2 files changed +9
-10
lines changed
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 16
16
lint :
17
17
runs-on : ubuntu-latest
18
18
steps :
19
- - uses : actions/checkout@v1
19
+ - uses : actions/checkout
20
20
- name : Setup Python
21
- uses : actions/setup-python@v1
21
+ uses : actions/setup-python
22
22
- name : Install Dependencies
23
23
run : pip install tox
24
24
- name : Flake8
@@ -35,17 +35,17 @@ jobs:
35
35
test :
36
36
runs-on : ubuntu-latest
37
37
steps :
38
- - uses : actions/checkout@v1
38
+ - uses : actions/checkout
39
39
- name : Setup Python 3.7
40
- uses : actions/setup-python@v1
40
+ uses : actions/setup-python
41
41
with :
42
42
python-version : 3.7
43
43
- name : Setup Python 3.8
44
- uses : actions/setup-python@v1
44
+ uses : actions/setup-python
45
45
with :
46
46
python-version : 3.8
47
47
- name : Setup Python 3.9
48
- uses : actions/setup-python@v1
48
+ uses : actions/setup-python
49
49
with :
50
50
python-version : 3.9
51
51
- name : Install Dependencies
76
76
if : github.event_name == 'schedule' && github.repository == 'aws/sagemaker-experiments'
77
77
runs-on : ubuntu-latest
78
78
steps :
79
- - uses : actions/checkout@v1
79
+ - uses : actions/checkout
80
80
- name : Setup Python
81
- uses : actions/setup-python@v1
81
+ uses : actions/setup-python
82
82
with :
83
83
python-version : ' 3.x'
84
84
- name : Install Dependencies
Original file line number Diff line number Diff line change @@ -60,8 +60,7 @@ def release():
60
60
61
61
if not recent_changes_to_src (latest_version ):
62
62
print ("Nothing to release." )
63
- exit (1 )
64
- return
63
+ exit (0 )
65
64
66
65
changes = get_changes (latest_version )
67
66
You can’t perform that action at this time.
0 commit comments