File tree Expand file tree Collapse file tree 3 files changed +10
-13
lines changed Expand file tree Collapse file tree 3 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 43
43
- name : deploy
44
44
if : github.ref == 'refs/heads/testing-juce8'
45
45
env :
46
- artifactoryApiKey : ${{ secrets.artifactoryApiKey }}
46
+ ARTIFACTORY_ACCESS_TOKEN : ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}
47
47
build_dir : " Build"
48
48
repo : ${{ github.event.repository.name }}
49
49
package : OpenEphysFFTW-linux
56
56
cp -r libs/linux/bin/* shared
57
57
zipfile=${package}_${new_plugin_ver}.zip
58
58
zip -r -X $zipfile shared
59
- curl -H "X-JFrog-Art-Api:$artifactoryApiKey " -T $zipfile "https://openephys.jfrog.io/artifactory/OpenEphysFFTW-plugin/linux/$zipfile"
59
+ curl -H "X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN " -T $zipfile "https://openephys.jfrog.io/artifactory/OpenEphysFFTW-plugin/linux/$zipfile"
Original file line number Diff line number Diff line change 31
31
cd ../..
32
32
git clone https://github.com/open-ephys/plugin-GUI.git --branch $GUI_BRANCH
33
33
cd plugin-GUI/Build && cmake -G "Xcode" ..
34
- - uses : maxim-lobanov/setup-xcode@v1
35
- with :
36
- xcode-version : latest-stable
37
34
- name : build
38
35
run : |
39
36
cd Build
44
41
- name : deploy
45
42
if : github.ref == 'refs/heads/testing-juce8'
46
43
env :
47
- artifactoryApiKey : ${{ secrets.artifactoryApiKey }}
44
+ ARTIFACTORY_ACCESS_TOKEN : ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}
48
45
MACOS_CERTIFICATE : ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
49
46
MACOS_CERTIFICATE_PWD : ${{ secrets.BUILD_CERTIFICATE_PWD }}
50
47
MACOS_CERTIFICATE_NAME : ${{ secrets.BUILD_CERTIFICATE_NAME }}
81
78
82
79
zipfile=${package}_${new_plugin_ver}.zip
83
80
zip -r -X $zipfile shared
84
- curl -H "X-JFrog-Art-Api:$artifactoryApiKey " -T $zipfile "https://openephys.jfrog.io/artifactory/OpenEphysFFTW-plugin/mac/$zipfile"
81
+ curl -H "X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN " -T $zipfile "https://openephys.jfrog.io/artifactory/OpenEphysFFTW-plugin/mac/$zipfile"
Original file line number Diff line number Diff line change 10
10
runs-on : ${{ matrix.os }}
11
11
strategy :
12
12
matrix :
13
- os : [windows-2019 ]
13
+ os : [windows-latest ]
14
14
15
15
steps :
16
16
- uses : actions/checkout@v4
@@ -34,15 +34,15 @@ jobs:
34
34
cd ../..
35
35
git clone https://github.com/open-ephys/plugin-GUI.git --branch $GUI_BRANCH
36
36
cd plugin-GUI/Build
37
- cmake -G "Visual Studio 16 2019 " -A x64 ..
37
+ cmake -G "Visual Studio 17 2022 " -A x64 ..
38
38
mkdir Release && cd Release
39
- curl -L https://openephysgui .jfrog.io/artifactory/Libraries/open-ephys-lib-$GUI_LIB_VERSION.zip --output open-ephys-lib.zip
39
+ curl -L https://openephys .jfrog.io/artifactory/GUI-binaries /Libraries/open-ephys-lib-$GUI_LIB_VERSION.zip --output open-ephys-lib.zip
40
40
unzip open-ephys-lib.zip
41
41
shell : bash
42
42
- name : configure
43
43
run : |
44
44
cd Build
45
- cmake -G "Visual Studio 16 2019 " -A x64 ..
45
+ cmake -G "Visual Studio 17 2022 " -A x64 ..
46
46
shell : bash
47
47
- name : Add msbuild to PATH
48
48
uses : microsoft/setup-msbuild@v2
56
56
- name : deploy
57
57
if : github.ref == 'refs/heads/testing-juce8'
58
58
env :
59
- artifactoryApiKey : ${{ secrets.artifactoryApiKey }}
59
+ ARTIFACTORY_ACCESS_TOKEN : ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}
60
60
build_dir : " Build/Release"
61
61
package : OpenEphysFFTW-windows
62
62
run : |
71
71
fi
72
72
zipfile=${package}_${new_plugin_ver}.zip
73
73
powershell Compress-Archive -Path "shared" -DestinationPath ${zipfile}
74
- curl -H "X-JFrog-Art-Api:$artifactoryApiKey " -T $zipfile "https://openephys.jfrog.io/artifactory/OpenEphysFFTW-plugin/windows/$zipfile"
74
+ curl -H "X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN " -T $zipfile "https://openephys.jfrog.io/artifactory/OpenEphysFFTW-plugin/windows/$zipfile"
75
75
shell : bash
You can’t perform that action at this time.
0 commit comments