Skip to content

Commit 077484c

Browse files
committed
Fix installer build process in windows and linux yml files
1 parent 30dae8d commit 077484c

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ jobs:
4646
dpkg-deb --build Open-Ephys_Installer
4747
installer=Open-Ephys_Installer_${gui_ver}-beta.deb
4848
mv -v Open-Ephys_Installer.deb $installer
49-
curl -T $installer --user $user_info https://api.bintray.com/content/open-ephys-gui/Test-Installer/Test-Installer-windows/$gui_ver/$installer
50-
curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Test-Installer/Test-Installer-windows/$gui_ver/publish
49+
curl -T $installer --user $user_info https://api.bintray.com/content/open-ephys-gui/Test-Installer/Test-Installer-linux/$gui_ver/$installer
50+
curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Test-Installer/Test-Installer-linux/$gui_ver/publish
5151
shell: bash
5252
- name: deploy_release
5353
if: github.ref == 'refs/heads/master'
@@ -73,6 +73,6 @@ jobs:
7373
dpkg-deb --build Open-Ephys_Installer
7474
installer=Open-Ephys_Installer_${gui_ver}-beta.deb
7575
mv Open-Ephys_Installer.deb $installer
76-
curl -T $installer --user $user_info https://api.bintray.com/content/open-ephys-gui/Release-Installer/Release-Installer-windows/$gui_ver/$installer
77-
curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Release-Installer/Release-Installer-windows/$gui_ver/publish
76+
curl -T $installer --user $user_info https://api.bintray.com/content/open-ephys-gui/Release-Installer/Release-Installer-linux/$gui_ver/$installer
77+
curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Release-Installer/Release-Installer-linux/$gui_ver/publish
7878
shell: bash

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
bintrayApiKey: ${{ secrets.bintrayApiKey }}
3333
run: |
3434
cd Build
35-
mv Release open-ephys
35+
cp -r Release open-ephys
3636
cp -r ../Resources/DLLs/FrontPanelUSB-DriverOnly-4.5.5.exe open-ephys
3737
cp -r ../Resources/DataFiles open-ephys
3838
cp -r ../Licenses open-ephys
@@ -56,7 +56,7 @@ jobs:
5656
bintrayApiKey: ${{ secrets.bintrayApiKey }}
5757
run: |
5858
cd Build
59-
mv Release open-ephys
59+
cp -r Release open-ephys
6060
cp -r ../Resources/DLLs/FrontPanelUSB-DriverOnly-4.5.5.exe open-ephys
6161
cp -r ../Resources/DataFiles open-ephys
6262
cp -r ../Licenses open-ephys

0 commit comments

Comments
 (0)