Closed guptaaryan16 closed 1 year ago
Name | Link |
---|---|
Latest commit | 3694b263bf9ee405a80a840557648eac2002e38d |
Latest deploy log | https://app.netlify.com/sites/code-generator/deploys/6509574af953df0008a05da9 |
Deploy Preview | https://deploy-preview-319--code-generator.netlify.app/ |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Description
This PR aims to improve the current behaviour of the CI for both the PR and deployment . As of now, we have a functionality where we try to create
uuid
for each configuration of the code generator app template and then return this using agetZIPUid
function. This created a problem of not able to differentiate between the zip files and notebooks pushed for thePR Builds
and the Deployment Builds.We introduced a new netlify variable
PR_BUILD
which isfalse
only when it is a production build. When thePR_BUILD=true
, we are going to add the commit hash to the commit uuid generated by thegetZipUid
function.Additional context
This issue was suggested in #317
What is the purpose of this pull request?