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 6060 - name : deploy
6161 if : github.ref == 'refs/heads/main'
6262 env :
63- secrets. ARTIFACTORY_ACCESS_TOKEN : ${{ secrets. secrets.ARTIFACTORY_ACCESS_TOKEN }}
63+ ARTIFACTORY_ACCESS_TOKEN : ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}
6464 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:
110110 - name : deploy
111111 if : github.ref == 'refs/heads/main'
112112 env :
113- secrets. ARTIFACTORY_ACCESS_TOKEN : ${{ secrets. secrets.ARTIFACTORY_ACCESS_TOKEN }}
113+ ARTIFACTORY_ACCESS_TOKEN : ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}
114114 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 7171 - name : deploy
7272 if : github.ref == 'refs/heads/main'
7373 env :
74- secrets. ARTIFACTORY_ACCESS_TOKEN : ${{ secrets. secrets.ARTIFACTORY_ACCESS_TOKEN }}
74+ ARTIFACTORY_ACCESS_TOKEN : ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}
7575 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 }}"
7777 shell : bash
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ extern "C" EXPORT void getLibInfo (Plugin::LibraryInfo* info)
4343 The GUI refueses to load plugins with mismatched API versions */
4444 info->apiVersion = PLUGIN_API_VER;
4545 info->name = " Python Processor" ; // <---- update
46- info->libVersion = " 0.1 .0" ; // <---- update
46+ info->libVersion = " 1.0 .0" ; // <---- update
4747 info->numPlugins = NUM_PLUGINS;
4848}
4949
You can’t perform that action at this time.
0 commit comments