File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ jobs:
124
124
- name : Test OctoBot Binary on Linux
125
125
if : matrix.os == 'ubuntu-latest'
126
126
run : |
127
- chmod +x OctoBot_linux_x64
127
+ chmod +x OctoBot_linux_x64/OctoBot_ubuntu-latest_x64
128
128
pytest tests
129
129
130
130
- name : Download MacOs x64 artifact
@@ -137,7 +137,7 @@ jobs:
137
137
- name : Test OctoBot Binary on MacOs
138
138
if : matrix.os == 'macos-latest'
139
139
run : |
140
- chmod +x OctoBot_macos_x64
140
+ chmod +x OctoBot_macos_x64/OctoBot_macos-latest_x64
141
141
pytest tests
142
142
143
143
create-release :
Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ def is_on_windows():
24
24
25
25
def get_binary_file_path () -> str :
26
26
if is_on_windows ():
27
- return "OctoBot_windows_x64.exe"
27
+ return "OctoBot_windows_x64.exe/OctoBot_windows.exe "
28
28
elif platform .system () == "Darwin" :
29
- return "./OctoBot_macos_x64"
29
+ return "./OctoBot_macos_x64/OctoBot_macos-latest_x64 "
30
30
else :
31
- return "./OctoBot_linux_x64"
31
+ return "./OctoBot_linux_x64/OctoBot_ubuntu-latest_x64 "
32
32
33
33
34
34
def delete_folder_if_exists (folder_path ):
You can’t perform that action at this time.
0 commit comments