-
Notifications
You must be signed in to change notification settings - Fork 0
Prepare for publishing #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughAdds a GitHub Actions Deploy workflow for publishing on tag pushes, updates README badges and dependency snippet to Kotlin Multiplatform style, and revises Gradle project/POM metadata (group, version, URLs, developer info, and build settings) to the technoir-lab namespace. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Dev as Developer
participant GH as GitHub
participant WF as Actions Runner
participant GR as Gradle
participant MC as Maven Central
Dev->>GH: Push tag (e.g., v1.7.0) or manual dispatch
GH-->>WF: Trigger Deploy workflow
rect rgb(245, 250, 255)
note over WF: Setup
WF->>WF: Checkout repo
WF->>WF: Set up JDK 17 (Temurin)
WF->>WF: Configure Gradle
WF->>WF: Restore/cache ~/.konan (key: OS + settings.gradle.kts)
WF->>WF: Compute VERSION_NAME (strip leading 'v')
end
rect rgb(240, 255, 240)
note over GR,MC: Publish
WF->>GR: Run Gradle publish with secrets
GR->>MC: Upload artifacts & POM
MC-->>GR: Acknowledge
end
WF-->>GH: Report workflow result
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20–30 minutes Possibly related PRs
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (3)
Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (3)
.github/workflows/deploy.yaml(1 hunks)README.md(2 hunks)gradle.properties(1 hunks)
Summary by CodeRabbit
New Features
Documentation
Chores