Skip to content

Commit 86b67c5

Browse files
anconguiclaude
andcommitted
release: bump version to 26.01.01 and add CI/release workflows
- Migrate version from 1.0.0-SNAPSHOT to CalVer 26.01.01 - Add GitHub Actions CI workflow (triggers on develop push and PRs) - Add GitHub Actions release workflow (triggers on v* tags, deploys to GitHub Packages) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 842b9f7 commit 86b67c5

3 files changed

Lines changed: 25 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [develop]
5+
pull_request:
6+
branches: [develop, main]
7+
jobs:
8+
build:
9+
uses: fireflyframework/.github/.github/workflows/java-ci.yml@main
10+
with:
11+
java-version: '25'

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Release
2+
on:
3+
push:
4+
tags: ['v*']
5+
jobs:
6+
release:
7+
uses: fireflyframework/.github/.github/workflows/java-release.yml@main
8+
with:
9+
java-version: '25'
10+
permissions:
11+
contents: write
12+
packages: write

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<parent>
99
<groupId>org.fireflyframework</groupId>
1010
<artifactId>fireflyframework-parent</artifactId>
11-
<version>1.0.0-SNAPSHOT</version>
11+
<version>26.01.01</version>
1212
<relativePath/>
1313
</parent>
1414

1515
<artifactId>fireflyframework-core</artifactId>
16-
<version>1.0.0-SNAPSHOT</version>
16+
<version>26.01.01</version>
1717
<packaging>jar</packaging>
1818

1919
<dependencies>

0 commit comments

Comments
 (0)