aboutsummaryrefslogtreecommitdiff
path: root/.github
Commit message (Collapse)AuthorAgeFilesLines
* Update GitHub Actions to latest versions for 2025v0.1.0diogo4642025-07-101-4/+4
| | | | | | | | | | | | | | - Update actions/cache from v3 to v4 (v1-v3 deprecated as of Feb 2025) - Update actions/upload-artifact to v4 (v3 deprecated) - Update actions/download-artifact to v4 (v3 deprecated) - Update softprops/action-gh-release from v1 to v2 These updates are required as older versions are deprecated and will stop working in 2025. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
* Fix GitHub Actions: Update artifact actions to v4diogo4642025-07-101-2/+2
| | | | | | | | | The v3 versions of upload-artifact and download-artifact are deprecated. Updated to v4 to fix the workflow. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
* Add GitHub Actions release workflow and build scriptsdiogo4642025-07-101-0/+169
- Add .github/workflows/release.yml for automated releases on version tags - Add scripts/build-static.sh for building statically linked binaries - Add scripts/prepare-release.sh for preparing release artifacts - Optimize Cargo.toml for smaller binary size (reduced from 4.5MB to 2.9MB) - Add scripts/README.md with usage documentation The workflow automatically builds binaries for Linux (musl) and macOS (Intel/ARM) when a version tag is pushed. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>