mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 09:44:04 +00:00
Add sha256sum for appimage artifact.
This commit is contained in:
parent
415c577823
commit
a73e6bcc0d
9
.github/workflows/publish-appimage.yml
vendored
9
.github/workflows/publish-appimage.yml
vendored
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user