1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 21:49:07 +00:00

Add sha256sum for appimage artifact.

This commit is contained in:
Brenden Matthews 2022-09-12 13:15:12 -05:00
parent 415c577823
commit a73e6bcc0d
No known key found for this signature in database
GPG Key ID: B49ABB7270D9D4FD
2 changed files with 12 additions and 4 deletions

View File

@ -55,11 +55,14 @@ jobs:
gpg --import appimage/secret.gpg
- name: Build AppImage
run: ./appimage/build.sh
- name: Archive AppImage
uses: actions/upload-artifact@v2
- name: Upload AppImage artifact
uses: actions/upload-artifact@v3
with:
name: conky-appimage-amd64
path: conky*.AppImage
- name: Upload AppImage artifact
uses: actions/upload-artifact@v3
with:
path: conky*.AppImage.sha256
- name: Create Conky Release
id: create_release
uses: softprops/action-gh-release@v1

View File

@ -74,4 +74,9 @@ chmod +x appimagetool-x86_64.AppImage
./appimagetool-x86_64.AppImage AppDir --sign --sign-key E3034071
mv conky*.AppImage "$OLD_CWD"
for f in conky*.AppImage
do
sha256sum $f > $f.sha256
done
mv conky*.AppImage* "$OLD_CWD"