Skip to content

Commit

Permalink
Update maven.yml (CellProfiler#54)
Browse files Browse the repository at this point in the history
* Update maven.yml

* Update maven.yml

* Update maven.yml

* Update maven.yml

* Update maven.yml

* Update maven.yml

* v2.4.4

* fix release too
  • Loading branch information
bethac07 authored Jul 22, 2021
1 parent 3da540c commit 05f7af3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,17 @@ jobs:
with:
java-version: 8
distribution: adopt
- name: Build maven
run: mvn test -B -V -e --settings .mvn/custom-settings.xml
- name: Build with Maven
run: |
mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -e --settings .mvn/custom-settings.xml
mvn test -B --settings .mvn/custom-settings.xml
- name: Build Python package
run: python setup.py sdist
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: prokaryote-2.4.3.tar.gz
name: prokaryote-2.4.4.tar.gz
path: dist/


8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ jobs:
with:
java-version: 8
distribution: adopt
- name: Build maven
run: mvn test -B -V -e --settings .mvn/custom-settings.xml
- name: Build with Maven
run: |
mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -e --settings .mvn/custom-settings.xml
mvn test -B --settings .mvn/custom-settings.xml
- name: Build Python package
run: python setup.py sdist
- id: get_version
Expand All @@ -34,7 +36,7 @@ jobs:
uses: actions/[email protected]
with:
# Artifact name
name: prokaryote-{{ steps.get_version.outputs.version-without-v }}.tar.gz
name: prokaryote-${{ steps.get_version.outputs.version-without-v }}.tar.gz
path: dist/
- name: pypi-publish
uses: pypa/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.cellprofiler</groupId>
<artifactId>prokaryote</artifactId>
<version>2.4.3</version>
<version>2.4.4</version>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down
2 changes: 1 addition & 1 deletion prokaryote/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.4.3"
__version__ = "2.4.4"

0 comments on commit 05f7af3

Please sign in to comment.