From d281505777cd3234b958a21ba0777af33d086f6b Mon Sep 17 00:00:00 2001 From: erciccione Date: Mon, 28 Jun 2021 15:55:07 +0200 Subject: [PATCH 1/2] downloads: add hashes of source code (archive) to the 'verify' section for both CLI and GUI --- _data/downloads.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/_data/downloads.yml b/_data/downloads.yml index bbbf8fa9..7acb8411 100644 --- a/_data/downloads.yml +++ b/_data/downloads.yml @@ -23,6 +23,10 @@ gui: link: https://downloads.getmonero.org/gui/linux64 icon: icon-linux vers: + - platform: Source Code (archive) + hash: 8d6770bb3a8840eac9ce48b1a598ef83a5f5ec677e6edb6b7ad8e87b26e9d404 + link: https://downloads.getmonero.org/gui/source + icon: icon-github - platform: Source Code link: https://github.com/monero-project/monero-gui icon: icon-github @@ -81,6 +85,10 @@ cli: link: https://downloads.getmonero.org/cli/freebsd64 icon: icon-freebsd vers: - - platform: Source Code + - platform: Source Code (archive) + hash: 7801945b040f39db5497335d5219768773aa28bef7c5e88a61c1c8b639ccb412 + link: https://downloads.getmonero.org/cli/source + icon: icon-github + - platform: Source Code link: https://github.com/monero-project/monero icon: icon-github From ccb868345dc9ebb73f472acf345a2ef170166cf8 Mon Sep 17 00:00:00 2001 From: erciccione Date: Wed, 30 Jun 2021 11:06:04 +0200 Subject: [PATCH 2/2] workflows: add check for source archive to hashes.yaml --- .github/workflows/hashes.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/hashes.yaml b/.github/workflows/hashes.yaml index e0ab3da7..e5e4d9ff 100644 --- a/.github/workflows/hashes.yaml +++ b/.github/workflows/hashes.yaml @@ -52,6 +52,7 @@ jobs: *gui/win64) filename=monero-gui-win-x64 ;; *gui/mac64) filename=monero-gui-mac-x64 ;; *gui/linux64) filename=monero-gui-linux-x64 ;; + *gui/source) filename=monero-gui-source ;; *cli/win64) filename=monero-win-x64 ;; *cli/win32) filename=monero-win-x86 ;; *cli/mac64) filename=monero-mac-x64 ;; @@ -62,6 +63,7 @@ jobs: *cli/androidarm8) filename=monero-android-armv8 ;; *cli/androidarm7) filename=monero-android-armv7 ;; *cli/freebsd64) filename=monero-freebsd-x64 ;; + *cli/source) filename=monero-source ;; *) echo "Unknown url $url" >&2 exit 1