44
44
CERTIFICATE_PASSWORD : ${{ secrets.CERTIFICATE_PASSWORD }}
45
45
if : ${{ matrix.os == 'macos-10.15' }}
46
46
run : |
47
- sed -i '' 's/4.0.0/3.0.0 /' Info.plist
47
+ sed -i '' 's/4.0.0/3.0.1 /' Info.plist
48
48
brew install mysql
49
49
git clone https://github.com/CellProfiler/python-javabridge.git
50
50
cd python-javabridge/
54
54
make
55
55
chmod +x add-osx-certificate.sh && ./add-osx-certificate.sh
56
56
chmod +x osx-codesign.sh && ./osx-codesign.sh
57
- ditto -ck --keepParent --rsrc --sequesterRsrc ./dist/CellProfiler-Analyst.app ./dist/CellProfiler-Analyst-macOS-3.0.0 .zip
57
+ ditto -ck --keepParent --rsrc --sequesterRsrc ./dist/CellProfiler-Analyst.app ./dist/CellProfiler-Analyst-macOS-3.0.1 .zip
58
58
working-directory : ./distribution/macos
59
59
- env :
60
60
JDK_HOME : C:\hostedtoolcache\windows\jdk\14.0.1\x64
@@ -65,17 +65,17 @@ jobs:
65
65
- if : ${{ matrix.os == 'windows-2019' }}
66
66
run : |
67
67
pyinstaller distribution/windows/CellProfiler-Analyst.spec
68
- iscc /dMyAppVersion="3.0.0 " "distribution/windows/CellProfiler-Analyst.iss"
68
+ iscc /dMyAppVersion="3.0.1 " "distribution/windows/CellProfiler-Analyst.iss"
69
69
- if : ${{ matrix.os == 'macos-10.15' }}
70
70
uses : actions/upload-artifact@v1
71
71
with :
72
- name : CellProfiler-Analyst-macOS-3.0.0 .zip
73
- path : ./distribution/macos/dist/CellProfiler-Analyst-macOS-3.0.0 .zip
72
+ name : CellProfiler-Analyst-macOS-3.0.1 .zip
73
+ path : ./distribution/macos/dist/CellProfiler-Analyst-macOS-3.0.1 .zip
74
74
- if : ${{ matrix.os == 'windows-2019' }}
75
75
uses : actions/upload-artifact@v2
76
76
with :
77
- name : CellProfiler-Analyst-Windows-3.0.0 .exe
78
- path : ./distribution/windows/Output/CellProfiler-Analyst-Windows-3.0.0 .exe
77
+ name : CellProfiler-Analyst-Windows-3.0.1 .exe
78
+ path : ./distribution/windows/Output/CellProfiler-Analyst-Windows-3.0.1 .exe
79
79
strategy :
80
80
matrix :
81
81
os : [macos-10.15, windows-2019]
@@ -97,25 +97,25 @@ jobs:
97
97
tag_name : ${{ github.ref }}
98
98
- uses : actions/download-artifact@v1
99
99
with :
100
- name : CellProfiler-Analyst-macOS-3.0.0 .zip
100
+ name : CellProfiler-Analyst-macOS-3.0.1 .zip
101
101
path : ./
102
102
- uses : actions/download-artifact@v1
103
103
with :
104
- name : CellProfiler-Analyst-Windows-3.0.0 .exe
104
+ name : CellProfiler-Analyst-Windows-3.0.1 .exe
105
105
path : ./
106
106
- env :
107
107
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
108
108
uses : actions/upload-release-asset@v1
109
109
with :
110
110
asset_content_type : application/zip
111
- asset_name : CellProfiler-Analyst-macOS-3.0.0 .zip
112
- asset_path : /home/runner/work/CellProfiler-Analyst/CellProfiler-Analyst/CellProfiler-Analyst-macOS-3.0.0 .zip
111
+ asset_name : CellProfiler-Analyst-macOS-3.0.1 .zip
112
+ asset_path : /home/runner/work/CellProfiler-Analyst/CellProfiler-Analyst/CellProfiler-Analyst-macOS-3.0.1 .zip
113
113
upload_url : ${{ steps.create_release.outputs.upload_url }}
114
114
- env :
115
115
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
116
116
uses : actions/upload-release-asset@v1
117
117
with :
118
118
asset_content_type : application/exe
119
- asset_name : CellProfiler-Analyst-Windows-3.0.0 .exe
120
- asset_path : /home/runner/work/CellProfiler-Analyst/CellProfiler-Analyst/CellProfiler-Analyst-Windows-3.0.0 .exe
119
+ asset_name : CellProfiler-Analyst-Windows-3.0.1 .exe
120
+ asset_path : /home/runner/work/CellProfiler-Analyst/CellProfiler-Analyst/CellProfiler-Analyst-Windows-3.0.1 .exe
121
121
upload_url : ${{ steps.create_release.outputs.upload_url }}
0 commit comments