Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 322 Bytes

CONTRIBUTING.md

File metadata and controls

19 lines (15 loc) · 322 Bytes

Contribution Guide

Development Guide

git clone https://github.com/uetchy/gst.git && cd gst
go build

Release Guide (Maintainers only)

VERSION=vX.X.X
npx mdmod README.md --define.version $VERSION
git add .
git commit -m "chore: release ${VERSION}"
git tag -a "$VERSION" $VERSION
git push