From 5b4c62c768e887fba23eacaab5deecdc6934abae Mon Sep 17 00:00:00 2001 From: Asterisk Date: Mon, 3 Jun 2024 10:10:22 +0000 Subject: [PATCH 1/2] set up version system --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 69f8399..3b307d1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,6 +25,8 @@ build-job: # This job runs in the build stage, which runs first. - pacman -Scc - mkarchiso -v -w workdir/ -o out/ . || mkarchiso -v -w workdir/ -o out/ . - mv out/* blendOS.iso + - echo $CI_COMMIT_SHA > version artifacts: paths: - - blendOS.iso \ No newline at end of file + - blendOS.iso + - version \ No newline at end of file From 612451b00d71573e79da8de7318fd84bd0a729cf Mon Sep 17 00:00:00 2001 From: Asterisk Date: Mon, 3 Jun 2024 10:14:34 +0000 Subject: [PATCH 2/2] fix clone URL --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 886d284..2fb4284 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ sudo pacman -S archiso ``` ### 2. Pull the repository ``` -git clone https://github.com/blend-os/blendiso.git +git clone https://git.blendos.co/blendOS/image-builder.git ``` ### 3. Build ``` -cd blendiso +cd image-builder sudo mkarchiso -v -w workdir/ -o out/ . ``` Once the building process is finished you can find the ISO image in the `./out` directory.