From d0134d6415cf23c01c54d184b9bac39f3270d395 Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby <pierre-antoine.rouby@inrae.fr> Date: Fri, 22 Mar 2024 14:54:15 +0100 Subject: [PATCH] ci: Fix hash path. --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 82b7f883..1d5fe86b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ # .gitlab-ci.yml -- Pamhyr gitlab-ci -# Copyright (C) 2023 INRAE +# Copyright (C) 2023-2024 INRAE # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -416,10 +416,10 @@ linux-build-hash: - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_BRANCH == 'master' || $CI_COMMIT_TAG script: - cd linux - - sha256sum -b pamhyr/pamhyr/pamhyr > pamhyr/pamhyr/pamhyr.sha256 + - sha256sum -b pamhyr/pamhyr > pamhyr/pamhyr.sha256 artifacts: paths: - - linux/pamhyr/pamhyr/pamhyr.sha256 + - linux/pamhyr/pamhyr.sha256 windows-build-hash: stage: hash @@ -433,10 +433,10 @@ windows-build-hash: - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_BRANCH == 'master' || $CI_COMMIT_TAG script: - cd windows - - sha256sum -b pamhyr/pamhyr/pamhyr.exe > pamhyr/pamhyr/pamhyr.exe.sha256 + - sha256sum -b pamhyr/pamhyr.exe > pamhyr/pamhyr.exe.sha256 artifacts: paths: - - windows/pamhyr/pamhyr/pamhyr.exe.sha256 + - windows/pamhyr/pamhyr.exe.sha256 pkg-hash: stage: hash -- GitLab