Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Our NPM repos do not have their versions tagged, and they are not deployed on deployment day. 
    Each PR needs to update the version defined in the package.json file (also run `npm install` to update the package-lock.json version).
    When those PRs are merged, we do an immediate deployment to NPM to publish the new version of the package.
EDSC ECHO Forms 
Repo: https://github.com/nasa/edsc-echoforms
Deployment: https://ci.earthdata.nasa.gov/deploy/viewDeploymentProjectEnvironments.action?id=289767428
EDSC Timeline
Repo: https://github.com/nasa/edsc-timeline
Deployment: https://ci.earthdata.nasa.gov/deploy/viewDeploymentProjectEnvironments.action?id=307003393
EDSC Geo Utils
Repo: https://github.com/nasa/edsc-geo
Deployment: https://ci.earthdata.nasa.gov/deploy/viewDeploymentProjectEnvironments.action?id=398229507
EDSC Smart Handoffs
Repo: https://github.com/nasa/edsc-smart-handoffs
Deployment: https://ci.earthdata.nasa.gov/deploy/viewDeploymentProjectEnvironments.action?id=398229508
EDSC ESLint Config
Repo: https://git.earthdata.nasa.gov/projects/EDSC/repos/edsc-eslint-config/browse
Deployment: https://ci.earthdata.nasa.gov/deploy/viewDeploymentProjectEnvironments.action?id=468647939


Earthdata Download Deployment Procedure

  1. Earthdata Download does deployments differently. Everything is handled in GitHub by GitHub Actions. Each PR needs to update the version defined in the package.json file (also run `npm install` to update the package-lock.json version). After a PR is merged GitHub Actions runs the test suite on the main branch. _After_ those tests are completed you have to create a new tag for the new version.
    
        git checkout main
        git pull origin main
        git tag -a "v1.4.2" -m "v1.4.2 Release"
        git push origin "v1.4.2"
    
    This new tag will trigger the Build/Release workflow in GitHub Actions, which results in a new 'draft' release to be created. Team members will be able to see this draft release but it is not publicly available yet. The team will use this draft release to perform the ticket verification. _After_ the ticket has been verified with the draft release you can open the draft release and publish the release. This will make the release public and set it to the latest release.




Content by Label
showLabelsfalse
max5
spacesEDSC
showSpacefalse
sortmodified
reversetrue
typepage
cqllabel in ("deployment","tagging") and type = "page" and space = "EDSC"
labelsdeployment tagging

...