Versions Compared

Key

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

...

  • Write a description
  • Create MD5 and SHA1 files for each of the release artifacts

    Code Block
    titleFor examplecompute-checksums.sh
    export RELEASE_VERSION=sha1sum fcrepo-webapp-4.0.0-alpha-3-beta-01
    sha1sum fcrepo-webapp-$RELEASE_VERSION.war |cut -f1 -d' ' > fcrepo-webapp-4.0.0-alpha-3$RELEASE_VERSION.war.sha1
    md5sum fcrepo-webapp-4.0.0-alpha-3$RELEASE_VERSION.war |cut -f1 -d' ' > fcrepo-webapp-4.0.0-alpha-3$RELEASE_VERSION.war.md5
    
    sha1sum fcrepo-webapp-4.0.0-alpha-3$RELEASE_VERSION-jetty-console.war |cut -f1 -d' ' > fcrepo-webapp-4.0.0-alpha-3$RELEASE_VERSION-jetty-console.war.sha1
    md5sum fcrepo-webapp-4.0.0-alpha-3-jetty-console-$RELEASE_VERSION-jetty-console.war |cut -f1 -d' ' > fcrepo-webapp-$RELEASE_VERSION-jetty-console.war.md5
    sha1sum fcrepo-webapp-$RELEASE_VERSION-auth.war |cut -f1 -d' ' > fcrepo-webapp-4.0.0-alpha-3-jetty-console$RELEASE_VERSION-auth.war.sha1
    md5sum fcrepo-webapp-$RELEASE_VERSION-auth.war |cut -f1 -d' ' > fcrepo-webapp-$RELEASE_VERSION-auth.war.md5
    
  • Upload artifacts to GitHub release (war, war.asc, war.md5, war.sha1)

...