A Github Actions based CI release template.
This repo serves as a live template, and reference for building your own CI powered Rust release process on Github Action. This was built to fill a gap that Rust has, and Go doesn't have because Go has GoReleaser.
Heavily inspired from the helix editor project CI workflow + some small tweaks.
Development On each commit, the following is automated:
- CI with caching: check, test, lint
Release Upon pushing a new tag, the following is automated:
- Build for multi-platform binaries: Linux, Windows, macOS
- Create GitHub releases
- Update Homebrew formula
Just copy .github/workflows
to your own repo, and set a binary name in your own Cargo.toml
using a [[bin]]
block (see the example Cargo.toml).
Next, check out the point of interest for you to configure / tune below.
- Cargo.toml - set your binary name explicitly and take note of it
- build.yml - you can use as-is, no parameters to configure
- release.yml
- Project: at the top of the file, set your own parameters under
env
- Project: your binary name should be the same as in your
Cargo.toml
- Targets: configure platforms as you wish
- Homebrew: remove the Homebrew pragma if not needed
- Homebrew: macOS with ARM chips: customize your formula
- Project: at the top of the file, set your own parameters under
To all Contributors - you make this happen, thanks!
Copyright (c) 2021 @jondot. See LICENSE for further details.