summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2021-11-08 23:22:09 +0000
committerGitHub <noreply@github.com>2021-11-08 23:22:09 +0000
commitb885ec9cd3b40b9bcb91dadb834d9ecc02cfd67d (patch)
treeed4a970893d2f95aabb94f80d9e86cae0906ff32 /.github
parent33db289f7fe31b5200317055899df6ec40bdfc6f (diff)
Add alacritty-msg manpage to documentation
The original multiwindow PR added a new manpage, however this was not properly documented or included in our CI. This patch resolves these issues.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index ae8dc448..4b3ab013 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -71,12 +71,15 @@ jobs:
- name: Test
run: cargo test --release
- name: Gzip manpage
- run: gzip -c "./extra/alacritty.man" > "./alacritty.1.gz"
+ run: |
+ gzip -c "./extra/alacritty.man" > "./alacritty.1.gz"
+ gzip -c "./extra/alacritty-msg.man" > "./alacritty-msg.1.gz"
- name: Upload Assets
run: |
mv ./extra/logo/alacritty-term.svg ./Alacritty.svg
./.github/workflows/upload_asset.sh ./Alacritty.svg $GITHUB_TOKEN
./.github/workflows/upload_asset.sh ./alacritty.1.gz $GITHUB_TOKEN
+ ./.github/workflows/upload_asset.sh ./alacritty-msg.1.gz $GITHUB_TOKEN
./.github/workflows/upload_asset.sh ./extra/completions/alacritty.bash $GITHUB_TOKEN
./.github/workflows/upload_asset.sh ./extra/completions/alacritty.fish $GITHUB_TOKEN
./.github/workflows/upload_asset.sh ./extra/completions/_alacritty $GITHUB_TOKEN