3737 bintrayUser : ${{ secrets.bintrayUsername }}
3838 bintrayApiKey : ${{ secrets.bintrayApiKey }}
3939 run : |
40- git clone --branch windows https://github.com/open-ephys-gui-binaries/open-ephys.git
41- curl -L https://dl.bintray.com/open-ephys-gui-plugins/neuropixels-3a/neuropixels-3a-windows_0.1.0-API6.zip --output neuropixels-3a.zip
42- curl -L https://dl.bintray.com/open-ephys-gui-plugins/neuropixels-pxi/neuropixels-pxi-windows_0.1.0-API6.zip --output neuropixels-pxi.zip
43- curl -L https://dl.bintray.com/open-ephys-gui-plugins/nidaq-plugin/nidaq-plugin-windows_0.1.0-API6.zip --output nidaq-plugin.zip
44- curl -L https://dl.bintray.com/open-ephys-gui-plugins/probe-viewer/probe-viewer-windows_0.1.0-API6.zip --output probe-viewer.zip
45- curl -L https://dl.bintray.com/open-ephys-gui-plugins/StreamMuxer/StreamMuxer-windows_0.1.0-API6.zip --output stream-muxer.zip
46- curl -L https://dl.bintray.com/open-ephys-gui-plugins/ZMQPlugins/ZMQPlugins-windows_0.1.0-API6.zip --output zmq-plugins.zip
47- powershell Expand-Archive neuropixels-3a.zip -DestinationPath Build/Release
48- powershell Expand-Archive neuropixels-pxi.zip -DestinationPath Build/Release
49- powershell Expand-Archive nidaq-plugin.zip -DestinationPath Build/Release
50- powershell Expand-Archive stream-muxer.zip -DestinationPath Build/Release
51- powershell Expand-Archive probe-viewer.zip -DestinationPath Build/Release
52- powershell Expand-Archive zmq-plugins.zip -DestinationPath Build/Release
53- cp -r open-ephys/shared Build/Release
54- cp -r open-ephys/plugins/KWIKFormat.dll Build/Release/plugins
55- cp -r open-ephys/plugins/NWBFormat.dll Build/Release/plugins
5640 cd Build
5741 mv Release open-ephys
42+ cp -r ../Resources/DataFiles open-ephys
5843 gui_ver=$(git describe --tags $(git rev-list --tags --max-count=1))
5944 zipfile=open-ephys-${gui_ver}-windows-beta.zip
6045 powershell Compress-Archive -Path "open-ephys" -DestinationPath ${zipfile}
@@ -68,28 +53,13 @@ jobs:
6853 bintrayUser : ${{ secrets.bintrayUsername }}
6954 bintrayApiKey : ${{ secrets.bintrayApiKey }}
7055 run : |
71- git clone --branch windows https://github.com/open-ephys-gui-binaries/open-ephys.git
72- curl -L https://dl.bintray.com/open-ephys-gui-plugins/neuropixels-3a/neuropixels-3a-windows_0.1.0-API6.zip --output neuropixels-3a.zip
73- curl -L https://dl.bintray.com/open-ephys-gui-plugins/neuropixels-pxi/neuropixels-pxi-windows_0.1.0-API6.zip --output neuropixels-pxi.zip
74- curl -L https://dl.bintray.com/open-ephys-gui-plugins/nidaq-plugin/nidaq-plugin-windows_0.1.0-API6.zip --output nidaq-plugin.zip
75- curl -L https://dl.bintray.com/open-ephys-gui-plugins/probe-viewer/probe-viewer-windows_0.1.0-API6.zip --output probe-viewer.zip
76- curl -L https://dl.bintray.com/open-ephys-gui-plugins/StreamMuxer/StreamMuxer-windows_0.1.0-API6.zip --output stream-muxer.zip
77- curl -L https://dl.bintray.com/open-ephys-gui-plugins/ZMQPlugins/ZMQPlugins-windows_0.1.0-API6.zip --output zmq-plugins.zip
78- powershell Expand-Archive neuropixels-3a.zip -DestinationPath Build/Release
79- powershell Expand-Archive neuropixels-pxi.zip -DestinationPath Build/Release
80- powershell Expand-Archive nidaq-plugin.zip -DestinationPath Build/Release
81- powershell Expand-Archive stream-muxer.zip -DestinationPath Build/Release
82- powershell Expand-Archive probe-viewer.zip -DestinationPath Build/Release
83- powershell Expand-Archive zmq-plugins.zip -DestinationPath Build/Release
84- cp -r open-ephys/shared Build/Release
85- cp -r open-ephys/plugins/KWIKFormat.dll Build/Release/plugins
86- cp -r open-ephys/plugins/NWBFormat.dll Build/Release/plugins
8756 cd Build
8857 mv Release open-ephys
58+ cp -r ../Resources/DataFiles open-ephys
8959 gui_ver=$(git describe --tags $(git rev-list --tags --max-count=1))
90- zipfile=open-ephys-${gui_ver}-windows-beta .zip
60+ zipfile=open-ephys-${gui_ver}-windows.zip
9161 powershell Compress-Archive -Path "open-ephys" -DestinationPath ${zipfile}
9262 user_info="$bintrayUser:$bintrayApiKey"
93- curl -T $zipfile --user $user_info https://api.bintray.com/content/open-ephys-gui/Test/Test -windows/$gui_ver/$zipfile
94- curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Test/Test -windows/$gui_ver/publish
63+ curl -T $zipfile --user $user_info https://api.bintray.com/content/open-ephys-gui/Release/Release -windows/$gui_ver/$zipfile
64+ curl -X POST --user $user_info https://api.bintray.com/content/open-ephys-gui/Release/Release -windows/$gui_ver/publish
9565 shell : bash
0 commit comments