On your machine
cd spotify-tuiGenerate a release build
cargo build --releaseNow create a tar for that new release binary
cd target/release
tar -czf spotify-tui-v0.3.0.tar.gz sptEnsure that version number matches exactly the Github release you will create AND the version number in this repo Formula/spotify-tui.rb - in this case v0.3.0.
Upload that tar to a new Github release.
Now generate a sha from the tar and add the sha to Formula/spotify-tui.rb.
shasum -a 256 spotify-tui-v0.3.0.tar.gzYou will now finally be able to install a new version using
brew install Rigellute/tap/spotify-tuiThe binaries and sha256s are generated from Github Actions. Run the following script to fetch the latest sha256s and update Formula/spotify-tui.rb.
sh scripts/spotify-tui.sh $VERSION