Skip to content

Commit 659e68a

Browse files
committed
fix: Publish manpage on continuous build
1 parent d51bcf0 commit 659e68a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/go.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,13 @@ jobs:
2626
2727
- name: Build
2828
run: go build -o apx
29-
29+
3030
- name: Compress
3131
run: tar -czvf apx.tar.gz apx
3232

33+
- name: Compress-manpage
34+
run: tar -czvf apx-man.tar.gz apx/man/man1/apx.1
35+
3336
- uses: softprops/action-gh-release@v1
3437
with:
3538
token: "${{ secrets.GITHUB_TOKEN }}"
@@ -38,6 +41,7 @@ jobs:
3841
name: "Continuous Build"
3942
files: |
4043
apx.tar.gz
44+
apx-man.tar.gz
4145
sonar:
4246
name: Sonar
4347
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)