Fixed windows GA to create draft release#19
Merged
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughDisables push-based triggers for Linux and macOS GitHub Actions workflows. Adds a conditional “Create Release” step to the Windows workflow that drafts a GitHub release on main, uploading MSI and NSIS artifacts, with generated notes and versioning based on the run number. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant Dev as Developer
participant GH as GitHub (main)
participant Runner as Actions Runner (Windows)
participant Release as softprops/action-gh-release@v1
Dev->>GH: Push/merge to main
GH->>Runner: Trigger Windows workflow
Runner->>Runner: Build & package (MSI/NSIS)
Runner->>Runner: Upload artifacts
rect rgba(200, 245, 200, 0.3)
note over Runner: New step (conditional on main)<br/>continue-on-error: true
Runner->>Release: Create draft release<br/>tag: v<run_number><br/>name: PathFinder v<run_number><br/>generate notes
Release-->>Runner: Release URL / result
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro 📒 Files selected for processing (3)
Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary by CodeRabbit
New Features
Chores