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 @@ -134,7 +134,7 @@ jobs:
134
134
- name : Test OctoBot Binary on Linux
135
135
if : matrix.os == 'ubuntu-latest'
136
136
run : |
137
- chmod +x OctoBot_linux_x64
137
+ chmod +x OctoBot_linux_x64/OctoBot_ubuntu-latest_x64
138
138
pytest tests
139
139
140
140
- name : Download MacOs x64 artifact
@@ -147,7 +147,7 @@ jobs:
147
147
- name : Test OctoBot Binary on MacOs
148
148
if : matrix.os == 'macos-latest'
149
149
run : |
150
- chmod +x OctoBot_macos_x64
150
+ chmod +x OctoBot_macos_x64/OctoBot_macos-latest_x64
151
151
pytest tests
152
152
153
153
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