Skip to content

Commit

Permalink
Fix sha256sum & b2sum
Browse files Browse the repository at this point in the history
  • Loading branch information
Integral-Tech committed Oct 5, 2024
1 parent f428911 commit 71046ae
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/archiso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,21 @@ jobs:
run: |
outDir=archiso-apfs/out
isoPath=$(find $outDir -type f)
isoName=$(basename $isoPath)
echo "filePath=$isoPath" >> $GITHUB_ENV
echo "fileName=$(basename $isoPath)" >> $GITHUB_ENV
echo "fileName=$isoName" >> $GITHUB_ENV
echo "fileTag=$(date +'%Y.%m.%d')" >> $GITHUB_ENV
cd $outDir
sha256sum $fileName > sha256sum.txt
b2sum $fileName > b2sum.txt
sha256sum $isoName > sha256sum.txt
b2sum $isoName > b2sum.txt
- name: Release ArchISO
uses: softprops/action-gh-release@v1
with:
files: |
${{ env.filePath }}
sha256sum.txt
b2sum.txt
archiso-apfs/out/sha256sum.txt
archiso-apfs/out/b2sum.txt
name: ${{ env.fileName }}
tag_name: ${{ env.fileTag }}

0 comments on commit 71046ae

Please sign in to comment.