This document outlines the process for creating new releases of Railpack.
-
Determine the new version number following Semantic Versioning principles:
- MAJOR version for incompatible API changes
- MINOR version for backwards-compatible functionality additions
- PATCH version for backwards-compatible bug fixes
-
Create and push a new tag with the version number:
git tag v1.2.3 # Replace with your version number git push origin --tags
-
The release workflow will automatically:
- Build and publish the frontend Docker image to GHCR
- Create a GitHub release with changelog
- Build and attach binaries for multiple platforms
The frontend Docker image is published to GitHub Container Registry (GHCR) with the following tags:
ghcr.io/railpack/railpack-frontend:latest
(on default branch)ghcr.io/railpack/railpack-frontend:v1.2.3
(specific version)ghcr.io/railpack/railpack-frontend:1.2
(minor version)
The image is built for both linux/amd64
and linux/arm64
platforms.
The release workflow automatically builds and attaches binaries for multiple platforms to the GitHub release.
After pushing a tag:
- Check the Actions tab to monitor the release workflow
- Verify the GitHub release is created with the correct artifacts
- Confirm the frontend Docker image is available in the package registry