We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f428911 commit 71046aeCopy full SHA for 71046ae
1 file changed
.github/workflows/archiso.yml
@@ -41,20 +41,21 @@ jobs:
41
run: |
42
outDir=archiso-apfs/out
43
isoPath=$(find $outDir -type f)
44
+ isoName=$(basename $isoPath)
45
echo "filePath=$isoPath" >> $GITHUB_ENV
- echo "fileName=$(basename $isoPath)" >> $GITHUB_ENV
46
+ echo "fileName=$isoName" >> $GITHUB_ENV
47
echo "fileTag=$(date +'%Y.%m.%d')" >> $GITHUB_ENV
48
cd $outDir
- sha256sum $fileName > sha256sum.txt
49
- b2sum $fileName > b2sum.txt
+ sha256sum $isoName > sha256sum.txt
50
+ b2sum $isoName > b2sum.txt
51
52
- name: Release ArchISO
53
uses: softprops/action-gh-release@v1
54
with:
55
files: |
56
${{ env.filePath }}
- sha256sum.txt
57
- b2sum.txt
+ archiso-apfs/out/sha256sum.txt
58
+ archiso-apfs/out/b2sum.txt
59
60
name: ${{ env.fileName }}
61
tag_name: ${{ env.fileTag }}
0 commit comments