Skip to content

Commit 05f7af3

Browse files
authored
Update maven.yml (#54)
* Update maven.yml * Update maven.yml * Update maven.yml * Update maven.yml * Update maven.yml * Update maven.yml * v2.4.4 * fix release too
1 parent 3da540c commit 05f7af3

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.github/workflows/maven.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,17 @@ jobs:
2525
with:
2626
java-version: 8
2727
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
3032
- name: Build Python package
3133
run: python setup.py sdist
3234
- name: Upload a Build Artifact
3335
uses: actions/upload-artifact@v2.2.4
3436
with:
3537
# Artifact name
36-
name: prokaryote-2.4.3.tar.gz
38+
name: prokaryote-2.4.4.tar.gz
3739
path: dist/
3840

3941

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ jobs:
2424
with:
2525
java-version: 8
2626
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
2931
- name: Build Python package
3032
run: python setup.py sdist
3133
- id: get_version
@@ -34,7 +36,7 @@ jobs:
3436
uses: actions/upload-artifact@v2.2.4
3537
with:
3638
# 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
3840
path: dist/
3941
- name: pypi-publish
4042
uses: pypa/gh-action-pypi-publish@v1.4.2

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.cellprofiler</groupId>
66
<artifactId>prokaryote</artifactId>
7-
<version>2.4.3</version>
7+
<version>2.4.4</version>
88
<dependencies>
99
<dependency>
1010
<groupId>org.apache.commons</groupId>

prokaryote/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.4.3"
1+
__version__ = "2.4.4"

0 commit comments

Comments
 (0)