From feefe02b3958136ac3f24ae4af46ae0f9d5d38e7 Mon Sep 17 00:00:00 2001 From: Asterisk Date: Sun, 11 Aug 2024 21:52:16 +0000 Subject: [PATCH 1/2] Add checksums --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3b307d1..95afc7f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,7 +26,9 @@ build-job: # This job runs in the build stage, which runs first. - mkarchiso -v -w workdir/ -o out/ . || mkarchiso -v -w workdir/ -o out/ . - mv out/* blendOS.iso - echo $CI_COMMIT_SHA > version + - sha256sum blendOS.iso > checksum.txt artifacts: paths: - blendOS.iso - - version \ No newline at end of file + - version + - checksum.txt \ No newline at end of file From 6da165dacd35a57035cafdf62f43b27b26e505ae Mon Sep 17 00:00:00 2001 From: Asterisk Date: Sun, 11 Aug 2024 21:53:22 +0000 Subject: [PATCH 2/2] rename checksum.txt --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 95afc7f..7d252bb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,9 +26,9 @@ build-job: # This job runs in the build stage, which runs first. - mkarchiso -v -w workdir/ -o out/ . || mkarchiso -v -w workdir/ -o out/ . - mv out/* blendOS.iso - echo $CI_COMMIT_SHA > version - - sha256sum blendOS.iso > checksum.txt + - sha256sum blendOS.iso > checksum artifacts: paths: - blendOS.iso - version - - checksum.txt \ No newline at end of file + - checksum \ No newline at end of file