Skip to content

Commit 343544b

Browse files
committed
Update LICENSE path in GHA workflows
1 parent babcfb9 commit 343544b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
cd Build
4242
cp -r Release open-ephys
4343
cp -r ../Resources/DataFiles open-ephys
44-
cp -r ../Licenses open-ephys
44+
cp ../LICENSE open-ephys
4545
zipfile=open-ephys-${gui_ver}-linux-beta.zip
4646
zip -r $zipfile open-ephys
4747
user_info="$bintrayUser:$bintrayApiKey"
@@ -68,7 +68,7 @@ jobs:
6868
cd Build
6969
cp -r Release open-ephys
7070
cp -r ../Resources/DataFiles open-ephys
71-
cp -r ../Licenses open-ephys
71+
cp ../LICENSE open-ephys
7272
zipfile=open-ephys-${gui_ver}-linux.zip
7373
zip -r $zipfile open-ephys
7474
user_info="$bintrayUser:$bintrayApiKey"

.github/workflows/osx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
mkdir open-ephys
4545
mv open-ephys.app/ open-ephys
4646
cp -r ../../Resources/DataFiles open-ephys/
47-
cp -r ../../Licenses open-ephys/
47+
cp ../../LICENSE open-ephys
4848
zip -r $zipfile open-ephys
4949
user_info="$bintrayUser:$bintrayApiKey"
5050
curl -T $zipfile --user $user_info https://api.bintray.com/content/open-ephys-gui/Test/Test-mac/$gui_ver/$zipfile
@@ -78,7 +78,7 @@ jobs:
7878
mkdir open-ephys
7979
mv open-ephys.app/ open-ephys
8080
cp -r ../../Resources/DataFiles open-ephys/
81-
cp -r ../../Licenses open-ephys/
81+
cp ../../LICENSE open-ephys
8282
zip -r $zipfile open-ephys
8383
user_info="$bintrayUser:$bintrayApiKey"
8484
curl -T $zipfile --user $user_info https://api.bintray.com/content/open-ephys-gui/Release/Release-mac/$gui_ver/$zipfile

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
cp -r Release open-ephys
4545
cp -r ../Resources/DLLs/FrontPanelUSB-DriverOnly-4.5.5.exe open-ephys
4646
cp -r ../Resources/DataFiles open-ephys
47-
cp -r ../Licenses open-ephys
47+
cp ../LICENSE open-ephys
4848
gui_ver=$(git describe --tags $(git rev-list --tags --max-count=1))
4949
zipfile=open-ephys-${gui_ver}-windows-beta.zip
5050
powershell Compress-Archive -Path "open-ephys" -DestinationPath ${zipfile}
@@ -68,7 +68,7 @@ jobs:
6868
cp -r Release open-ephys
6969
cp -r ../Resources/DLLs/FrontPanelUSB-DriverOnly-4.5.5.exe open-ephys
7070
cp -r ../Resources/DataFiles open-ephys
71-
cp -r ../Licenses open-ephys
71+
cp ../LICENSE open-ephys
7272
gui_ver=$(git describe --tags $(git rev-list --tags --max-count=1))
7373
zipfile=open-ephys-${gui_ver}-windows.zip
7474
powershell Compress-Archive -Path "open-ephys" -DestinationPath ${zipfile}

Resources/Installers/Windows/windows_installer_script.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DefaultDirName={autopf}\Open Ephys
88
DefaultGroupName=Open Ephys
99
OutputBaseFilename=Open-Ephys_Installer
1010
OutputDir=.
11-
LicenseFile=..\..\..\Licenses\LICENSE
11+
LicenseFile=..\..\..\LICENSE
1212
ArchitecturesAllowed=x64
1313
ArchitecturesInstallIn64BitMode=x64
1414
ChangesAssociations=yes

0 commit comments

Comments
 (0)