Versions Compared

Key

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

...

Calculate the checksum and sign the artifacts

Code Block
languagebash
themeRDark
for i in $(ls -1 *.tar.gz); do gpg  -u ${CODESIGNINGKEY} --armor --output "${i}.asc" --detach-sig "${i}"; done

...



for i in $(ls -1 *.tar.gz); do sha512sum ${i} > ${i}.sha512; done

...



for i in $(ls -1 *.tar.gz); do gpg --print-mds ${i} > ${i}.mds; done

Upload the artifacts to somewhere

...