CONTINUOUS_BUILD.md
This repo contains build artifacts that are generated as part of the continues build pipeline.
Currently supported artifacts:
The build artifact is created if:
main branchbuild/* branchThe build artifacts are useful if you want to:
To install a specific build artifact change you package.json like so (not all lines may be needed):
{
"dependencies": {
"@builder.io/qwik": "github:QwikDev/qwik-build#SHA",
"@builder.io/qwik-city": "github:QwikDev/qwik-city-build#SHA",
"@builder.io/qwik-labs": "github:QwikDev/qwik-labs-build#SHA"
}
}
Where #SHA is one of the following:
#SHA - Install a specific build SHA. You can get the SHA from:
@builder.io/qwik commits@builder.io/qwik-city commits@builder.io/qwik-labs commits#build/name (or #main) - Install a specific build/* (or #main) branch:
@builder.io/qwik branches@builder.io/qwik-city branches@builder.io/qwik-labs branches
NOTE: Package managers will treat any SHA in the lock file which is on the branch as valid, and so they will not auto upgrade to the latest. For this reason this is not recommended.
You can bisect different commits to main to determine which specific change has cause the regression.
When creating the issue please include which SHA has caused the regression.