From 7a04a102a57eb6ef65568ba29320f4d4d9713f5b Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Thu, 4 Jan 2024 18:11:33 +0100 Subject: [PATCH] fix: update ci #12 --- devenv.nix | 4 ++-- project.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/devenv.nix b/devenv.nix index 7f87965..fddf722 100644 --- a/devenv.nix +++ b/devenv.nix @@ -320,11 +320,11 @@ in { sed -i "s/version\s*=\s*\".*\"/version=\"''${NEWVERSION}\"/" ${config.devenv.root}/project.nix ${pkgs.git}/bin/git add ${config.devenv.root}/project.nix - ${pkgs.git}/bin/git commit -m "chore: Bump version to ''${NEWVERSION} (RELEASE_IT)" + ${pkgs.git}/bin/git commit -m "chore: Bump version to ''${NEWVERSION}" ${pkgs.git}/bin/git log --decorate=short --pretty=oneline - ${pkgs.git}/bin/git tag -a "''${NEWVERSION}" -m "chore: Release ''${NEWVERSION} (RELEASE_IT)" + ${pkgs.git}/bin/git tag -a "''${NEWVERSION}" -m "chore: Release ''${NEWVERSION} - RELEASE_IT" ${pkgs.git}/bin/git push origin $CI_COMMIT_REF_NAME --tags ''; diff --git a/project.nix b/project.nix index d549ea6..d6f1231 100644 --- a/project.nix +++ b/project.nix @@ -5,6 +5,6 @@ supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; compileForSystems = ["linux/arm64" "linux/amd64" "darwin/amd64" "windows/amd64"]; modulePath = "gitlab.schukai.com/oss/utilities/version"; - version="0.7.2"; ## don't change this line, it is updated automatically by GitLab CI + version = "0.7.2"; ## don't change this line, it is updated automatically by GitLab CI vendorHash = "sha256-uyWI6Gnko1J62XDk6jjRdqZ8TSFtwsTOlDwdR9Xc+ic="; ## this is updated automatically by update-hashes } -- GitLab