Skip to content

Commit 6d95ac6

Browse files
committed
Calculate sha256 hash from same directory as the installers.
1 parent febfaa6 commit 6d95ac6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_radioconda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ jobs:
113113
OS_NAME: ${{ matrix.OS_NAME }}
114114
ARCH: ${{ matrix.ARCH }}
115115
run: |
116-
for INSTALLER_PATH in dist/$DISTNAME-*-$OS_NAME-$ARCH.*; do
116+
cd dist
117+
for INSTALLER_PATH in $DISTNAME-*-$OS_NAME-$ARCH.*; do
117118
HASH_PATH="$INSTALLER_PATH.sha256"
118119
sha256sum $INSTALLER_PATH > $HASH_PATH
119-
echo $INSTALLER_PATH
120120
cat $HASH_PATH
121121
done
122122

0 commit comments

Comments
 (0)