File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,17 @@ jobs:
25
25
with :
26
26
java-version : 8
27
27
distribution : adopt
28
- - name : Build maven
29
- run : mvn test -B -V -e --settings .mvn/custom-settings.xml
28
+ - name : Build with Maven
29
+ run : |
30
+ mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -e --settings .mvn/custom-settings.xml
31
+ mvn test -B --settings .mvn/custom-settings.xml
30
32
- name : Build Python package
31
33
run : python setup.py sdist
32
34
- name : Upload a Build Artifact
33
35
uses : actions/upload-artifact@v2.2.4
34
36
with :
35
37
# Artifact name
36
- name : prokaryote-2.4.3 .tar.gz
38
+ name : prokaryote-2.4.4 .tar.gz
37
39
path : dist/
38
40
39
41
Original file line number Diff line number Diff line change 24
24
with :
25
25
java-version : 8
26
26
distribution : adopt
27
- - name : Build maven
28
- run : mvn test -B -V -e --settings .mvn/custom-settings.xml
27
+ - name : Build with Maven
28
+ run : |
29
+ mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -e --settings .mvn/custom-settings.xml
30
+ mvn test -B --settings .mvn/custom-settings.xml
29
31
- name : Build Python package
30
32
run : python setup.py sdist
31
33
- id : get_version
34
36
uses : actions/upload-artifact@v2.2.4
35
37
with :
36
38
# Artifact name
37
- name : prokaryote-{{ steps.get_version.outputs.version-without-v }}.tar.gz
39
+ name : prokaryote-$ {{ steps.get_version.outputs.version-without-v }}.tar.gz
38
40
path : dist/
39
41
- name : pypi-publish
40
42
uses : pypa/gh-action-pypi-publish@v1.4.2
Original file line number Diff line number Diff line change 4
4
<modelVersion >4.0.0</modelVersion >
5
5
<groupId >org.cellprofiler</groupId >
6
6
<artifactId >prokaryote</artifactId >
7
- <version >2.4.3 </version >
7
+ <version >2.4.4 </version >
8
8
<dependencies >
9
9
<dependency >
10
10
<groupId >org.apache.commons</groupId >
Original file line number Diff line number Diff line change 1
- __version__ = "2.4.3 "
1
+ __version__ = "2.4.4 "
You can’t perform that action at this time.
0 commit comments