Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
delta1 committed Mar 28, 2023
1 parent 90a79ad commit d9d8aea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/guix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ jobs:
mkdir -p release
find output/ -type f -iregex ".*.\(gz\|zip\|exe\|dmg\)" -exec mv -t release {} +
cp sha256sums.txt release
gh release create "$BUILD_TAG" --title "$BUILD_TAG" --notes-file sha256sums.txt release/*
echo -e "\`\`\`\n$(cat sha256sums.txt)\n\`\`\`" > notes
gh release create "$BUILD_TAG" --title "$BUILD_TAG" --notes-file notes release/*
- uses: actions/upload-artifact@v3
with:
name: sha256sums.txt
Expand Down
4 changes: 2 additions & 2 deletions buildelements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ ls -alht
echo $builddir
ls -alht $builddir
ls -alht $builddir/output/
find /elements/$builddir/output/ -type f -print0 | env LC_ALL=C sort -z | xargs -r0 sha256sum | tee $NAME.txt
mv $NAME.txt /elements/$builddir/output/$NAME.txt
find $builddir/output/ -type f -print0 | env LC_ALL=C sort -z | xargs -r0 sha256sum | tee $NAME.txt
mv $NAME.txt $builddir/output/$NAME.txt
__EOF__

chmod 700 tmpelementsbuild.sh
Expand Down

0 comments on commit d9d8aea

Please sign in to comment.