mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-12-26 12:27:52 +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
|
gpg --import appimage/secret.gpg
|
||||||
- name: Build AppImage
|
- name: Build AppImage
|
||||||
run: ./appimage/build.sh
|
run: ./appimage/build.sh
|
||||||
- name: Archive AppImage
|
- name: Upload AppImage artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: conky-appimage-amd64
|
|
||||||
path: conky*.AppImage
|
path: conky*.AppImage
|
||||||
|
- name: Upload AppImage artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
path: conky*.AppImage.sha256
|
||||||
- name: Create Conky Release
|
- name: Create Conky Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: softprops/action-gh-release@v1
|
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
|
./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