Once you’ve finished customizing and testing your configurator, follow these steps to create a release version:
git checkout stable git pull origin stable
git tag v1.0.0 git push origin v1.0.0
v1.0.0
with your desired version number following semantic versioning conventions (e.g., v1.1.0
, v2.0.0
).
The push of a version tag (e.g., v1.0.0
) to the stable branch will automatically trigger the GitHub Actions workflow for creating a release. This workflow will:
v1.0.0
).Configurator.exe
for Windows and Configurator.app
for macOS).By following these steps, you’ll ensure a smooth release process and maintain a clear separation between development and production code.