Skip to main content

PATH Releases

Table of Contents

PATH Builds

PATH builds provide a Docker image to quickly bootstrap your Path gateway without building your own image.

PATH Build Resources

Example Usage

docker pull ghcr.io/buildwithgrove/path

Tagging a new release

1. Clone the repository

git clone git@github.com:buildwithgrove/path.git path
cd path

2. Create a release

Choose one of the following:

# Tag a new dev release (e.g. v1.0.1 -> v1.0.1-dev1, v1.0.1-dev1 -> v1.0.1-dev2)
make release_tag_dev

# Tag a new bug fix release (e.g. v1.0.1 -> v1.0.2)
make release_tag_bug_fix

# Tag a new minor release (e.g. v1.0.0 -> v1.1.0)
make release_tag_minor_release

Push the tag to GitHub:

git push origin $(git tag)

3. Draft a new GitHub release

Draft a new release at buildwithgrove/path/releases/new using the tag (e.g. v0.1.12-dev3) created in the previous step.