File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 60
60
- name : deploy
61
61
if : github.ref == 'refs/heads/main'
62
62
env :
63
- secrets. ARTIFACTORY_ACCESS_TOKEN : ${{ secrets. secrets.ARTIFACTORY_ACCESS_TOKEN }}
63
+ ARTIFACTORY_ACCESS_TOKEN : ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}
64
64
run : |
65
- curl -H "X-JFrog-Art-Api:$secrets. ARTIFACTORY_ACCESS_TOKEN" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/PythonProcessor-plugin/linux/${{ env.zipfile }}"
65
+ curl -H "X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/PythonProcessor-plugin/linux/${{ env.zipfile }}"
Original file line number Diff line number Diff line change @@ -110,6 +110,6 @@ jobs:
110
110
- name : deploy
111
111
if : github.ref == 'refs/heads/main'
112
112
env :
113
- secrets. ARTIFACTORY_ACCESS_TOKEN : ${{ secrets. secrets.ARTIFACTORY_ACCESS_TOKEN }}
113
+ ARTIFACTORY_ACCESS_TOKEN : ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}
114
114
run : |
115
- curl -H "X-JFrog-Art-Api:$secrets. ARTIFACTORY_ACCESS_TOKEN" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/PythonProcessor-plugin/mac/${{ env.zipfile }}"
115
+ curl -H "X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/PythonProcessor-plugin/mac/${{ env.zipfile }}"
Original file line number Diff line number Diff line change 71
71
- name : deploy
72
72
if : github.ref == 'refs/heads/main'
73
73
env :
74
- secrets. ARTIFACTORY_ACCESS_TOKEN : ${{ secrets. secrets.ARTIFACTORY_ACCESS_TOKEN }}
74
+ ARTIFACTORY_ACCESS_TOKEN : ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}
75
75
run : |
76
- curl -H "X-JFrog-Art-Api:$secrets. ARTIFACTORY_ACCESS_TOKEN" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/PythonProcessor-plugin/windows/${{ env.zipfile }}"
76
+ curl -H "X-JFrog-Art-Api:$ARTIFACTORY_ACCESS_TOKEN" -T ${{ env.zipfile }} "https://openephys.jfrog.io/artifactory/PythonProcessor-plugin/windows/${{ env.zipfile }}"
77
77
shell : bash
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ extern "C" EXPORT void getLibInfo (Plugin::LibraryInfo* info)
43
43
The GUI refueses to load plugins with mismatched API versions */
44
44
info->apiVersion = PLUGIN_API_VER;
45
45
info->name = " Python Processor" ; // <---- update
46
- info->libVersion = " 0.1 .0" ; // <---- update
46
+ info->libVersion = " 1.0 .0" ; // <---- update
47
47
info->numPlugins = NUM_PLUGINS;
48
48
}
49
49
You can’t perform that action at this time.
0 commit comments