From b2f41f88c94561ee6b0dd0f31c0e22fba96cde43 Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby Date: Mon, 5 Feb 2024 13:24:39 +0100 Subject: [PATCH] ci: Minor change to fix sha256 path. --- .gitlab-ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bac42a35..e4329bf2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -458,9 +458,12 @@ pkg-hash: rules: - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_TAG script: - - sha256sum -b windows/pamhyr-windows.exe > windows/pamhyr-windows.exe.sha256 - - sha256sum -b windows/pamhyr-windows.zip > windows/pamhyr-windows.zip.sha256 - - sha256sum -b linux/pamhyr-gnulinux.tar.xz > linux/pamhyr-gnulinux.tar.xz.sha256 + - cd windows + - sha256sum -b pamhyr-windows.exe > pamhyr-windows.exe.sha256 + - sha256sum -b pamhyr-windows.zip > pamhyr-windows.zip.sha256 + - cd .. + - cd linux + - sha256sum -b pamhyr-gnulinux.tar.xz > pamhyr-gnulinux.tar.xz.sha256 artifacts: paths: - windows/pamhyr-windows.exe.sha256