Skip to content

Commit 739ded1

Browse files
committed
release: v26.02.03 — CI/CD overhaul and version bump
- Standardize CI workflows (secrets:inherit, permissions, main branch trigger) - Fix shared workflows (multi-module 409, Maven Central validation, concurrency) - Redesign DAG orchestrator for layer-aware sequential dispatch - Add Maven Central metadata (name/description) to pom.xml files - Fix waitUntil: uploaded → published for Maven Central - Bump version from 26.02.02 to 26.02.03
1 parent 6c8a965 commit 739ded1

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: CI
22
on:
33
push:
4-
branches: [develop]
4+
branches: [develop, main]
55
paths-ignore:
66
- '**.md'
77
- 'docs/**'
@@ -30,7 +30,6 @@ jobs:
3030
permissions:
3131
packages: read
3232
contents: read
33-
actions: write
3433
with:
3534
java-version: '25'
3635
secrets: inherit

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Use this as a parent POM in your Firefly Framework module:
5757
<parent>
5858
<groupId>org.fireflyframework</groupId>
5959
<artifactId>fireflyframework-parent</artifactId>
60-
<version>26.02.02</version>
60+
<version>26.02.03</version>
6161
<relativePath/>
6262
</parent>
6363
```
@@ -76,7 +76,7 @@ Create a new Firefly Framework module by referencing the parent POM:
7676
<parent>
7777
<groupId>org.fireflyframework</groupId>
7878
<artifactId>fireflyframework-parent</artifactId>
79-
<version>26.02.02</version>
79+
<version>26.02.03</version>
8080
<relativePath/>
8181
</parent>
8282

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.fireflyframework</groupId>
88
<artifactId>fireflyframework-parent</artifactId>
9-
<version>26.02.02</version>
9+
<version>26.02.03</version>
1010
<packaging>pom</packaging>
1111

1212
<name>Firefly Framework - Parent POM</name>
@@ -653,7 +653,7 @@
653653
<configuration>
654654
<publishingServerId>central</publishingServerId>
655655
<autoPublish>true</autoPublish>
656-
<waitUntil>uploaded</waitUntil>
656+
<waitUntil>published</waitUntil>
657657
<checksums>required</checksums>
658658
</configuration>
659659
</plugin>

0 commit comments

Comments
 (0)