Skip to content

Commit ad7cd48

Browse files
committed
Fix performRelase var; remove unneeded exception
Signed-off-by: Ricardo Zanini <[email protected]>
1 parent 3574e56 commit ad7cd48

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Maven release ${{steps.metadata.outputs.current-version}}
6161
run: |
6262
git checkout -b release
63-
mvn -B release:prepare -Prelease -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}}
63+
mvn -B release:prepare -DperformRelease -Prelease -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}}
6464
cat release.properties
6565
git checkout ${{github.base_ref}}
6666
git rebase release

impl/test/src/test/java/io/serverlessworkflow/impl/test/DBGenerator.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@
3434

3535
public final class DBGenerator {
3636

37-
public static void generate(String dbName, boolean suspend)
38-
throws IOException, InterruptedException {
37+
public static void generate(String dbName, boolean suspend) throws IOException {
3938
Files.deleteIfExists(Path.of(dbName));
4039
try (PersistenceInstanceHandlers factories =
4140
BytesMapPersistenceInstanceHandlers.builder(new MVStorePersistenceStore(dbName))

pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -597,9 +597,6 @@
597597
</profile>
598598
<profile>
599599
<id>release</id>
600-
<properties>
601-
<performRelease>true</performRelease>
602-
</properties>
603600
<build>
604601
<plugins>
605602
<plugin>

0 commit comments

Comments
 (0)