We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad75db commit 01a75d4Copy full SHA for 01a75d4
.github/workflows/release.yaml
@@ -21,6 +21,17 @@ jobs:
21
name: paranoia-${{ matrix.os }}-${{ matrix.arch }}
22
path: paranoia
23
24
+ docs:
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - uses: actions/checkout@v3
28
+ - name: Documentation Build
29
+ run: go run ./hack/generate-manual
30
+ - uses: actions/upload-artifact@v3
31
+ with:
32
+ name: man-pages
33
+ path: man/
34
+
35
release:
36
needs:
37
- build
@@ -37,9 +48,12 @@ jobs:
48
mv paranoia-darwin-arm64/paranoia bin/paranoia-darwin-arm64
38
49
mv paranoia-linux-amd64/paranoia bin/paranoia-linux-amd64
39
50
mv paranoia-linux-arm64/paranoia bin/paranoia-linux-arm64
51
+ mkdir man
52
+ mv man-pages/* man/
40
53
- name: Release
41
54
uses: softprops/action-gh-release@v1
42
55
with:
43
56
files: |
44
57
LICENSE.txt
45
58
bin/paranoia-*
59
+ man/*
0 commit comments