mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 18:45:10 +00:00
Add man page to releases.
In addition to building an appimage for each commit to main and release, we'll include the man page so people can grab it without having to install pandoc. This addresses #1247 and #1254.
This commit is contained in:
parent
63f3f8a526
commit
ba363e1df9
13
.github/workflows/publish-appimage.yml
vendored
13
.github/workflows/publish-appimage.yml
vendored
@ -23,7 +23,6 @@ jobs:
|
|||||||
sudo apt-get install -yqq --no-install-recommends \
|
sudo apt-get install -yqq --no-install-recommends \
|
||||||
audacious-dev \
|
audacious-dev \
|
||||||
cmake \
|
cmake \
|
||||||
docbook2x \
|
|
||||||
gawk \
|
gawk \
|
||||||
lcov \
|
lcov \
|
||||||
libaudclient-dev \
|
libaudclient-dev \
|
||||||
@ -50,7 +49,11 @@ jobs:
|
|||||||
libxml2-dev \
|
libxml2-dev \
|
||||||
libxmmsclient-dev \
|
libxmmsclient-dev \
|
||||||
libxnvctrl-dev \
|
libxnvctrl-dev \
|
||||||
ncurses-dev
|
ncurses-dev \
|
||||||
|
pandoc \
|
||||||
|
python3 \
|
||||||
|
&&
|
||||||
|
pip3 install --upgrade pyyaml
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Import GPG Deploy Key
|
- name: Import GPG Deploy Key
|
||||||
@ -69,6 +72,11 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: conky-x86_64.AppImage.sha256
|
name: conky-x86_64.AppImage.sha256
|
||||||
path: conky-x86_64.AppImage.sha256
|
path: conky-x86_64.AppImage.sha256
|
||||||
|
- name: Upload man page artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: conky.1
|
||||||
|
path: conky.1
|
||||||
- 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
|
||||||
@ -81,3 +89,4 @@ jobs:
|
|||||||
files: |
|
files: |
|
||||||
conky-x86_64.AppImage
|
conky-x86_64.AppImage
|
||||||
conky-x86_64.AppImage.sha256
|
conky-x86_64.AppImage.sha256
|
||||||
|
conky.1
|
||||||
|
@ -34,6 +34,7 @@ cmake \
|
|||||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||||
-DRELEASE=ON \
|
-DRELEASE=ON \
|
||||||
-DBUILD_AUDACIOUS=ON \
|
-DBUILD_AUDACIOUS=ON \
|
||||||
|
-DBUILD_DOCS=ON \
|
||||||
-DBUILD_HTTP=ON \
|
-DBUILD_HTTP=ON \
|
||||||
-DBUILD_ICAL=ON \
|
-DBUILD_ICAL=ON \
|
||||||
-DBUILD_ICONV=ON \
|
-DBUILD_ICONV=ON \
|
||||||
@ -80,3 +81,6 @@ do
|
|||||||
done
|
done
|
||||||
|
|
||||||
mv conky*.AppImage* "$OLD_CWD"
|
mv conky*.AppImage* "$OLD_CWD"
|
||||||
|
|
||||||
|
# Copy the latest man page, which will be attached to releases
|
||||||
|
mv doc/conky.1 "$OLD_CWD"
|
||||||
|
Loading…
Reference in New Issue
Block a user