1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-28 21:19:10 +00:00

Gzip the man page.

This commit is contained in:
Brenden Matthews 2022-10-14 23:34:06 -05:00
parent 0681e89857
commit e99a555097
No known key found for this signature in database
GPG Key ID: B49ABB7270D9D4FD
2 changed files with 6 additions and 5 deletions

View File

@ -75,8 +75,8 @@ jobs:
- name: Upload man page artifact
uses: actions/upload-artifact@v3
with:
name: conky.1
path: conky.1
name: conky.1.gz
path: conky.1.gz
- name: Create Conky Release
id: create_release
uses: softprops/action-gh-release@v1
@ -89,4 +89,4 @@ jobs:
files: |
conky-x86_64.AppImage
conky-x86_64.AppImage.sha256
conky.1
conky.1.gz

View File

@ -82,5 +82,6 @@ done
mv conky*.AppImage* "$OLD_CWD"
# Copy the latest man page, which will be attached to releases
mv doc/conky.1 "$OLD_CWD"
# gzip & copy the man page, which will be attached to releases
gzip doc/conky.1
mv doc/conky.1.gz "$OLD_CWD"