We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fce044 commit a55ec5bCopy full SHA for a55ec5b
.github/workflows/custopize.yml
@@ -74,7 +74,7 @@ jobs:
74
md5sum $IMAGE > $IMAGE.md5
75
sha256sum $IMAGE > $IMAGE.sha256
76
77
- IMAGE_SHA256=`cat $IMAGE.sha256`
+ IMAGE_SHA256=`cat $IMAGE.sha256 | cut -d ' ' -f 1`
78
echo "IMAGE_SHA256=$IMAGE_SHA256" >> $GITHUB_ENV
79
80
IMAGE_SIZE=`stat -c %s $IMAGE`
@@ -84,7 +84,7 @@ jobs:
84
md5sum $IMAGE.zip > $IMAGE.zip.md5
85
sha256sum $IMAGE.zip > $IMAGE.zip.sha256
86
87
- ZIP_SHA256=`cat $IMAGE.zip.sha256`
+ ZIP_SHA256=`cat $IMAGE.zip.sha256 | cut -d ' ' -f 1`
88
echo "ZIP_SHA256=$ZIP_SHA256" >> $GITHUB_ENV
89
90
ZIP_SIZE=`stat -c %s $IMAGE.zip`
0 commit comments