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 67864ff commit 9edff1fCopy full SHA for 9edff1f
.github/workflows/release.yml
@@ -18,11 +18,10 @@ jobs:
18
id: gen-man-page-md
19
run: |
20
./scripts/generate-man-page-md.sh
21
- echo "::set-output name=man-page-md::man.md"
22
23
- name: Get the version
24
id: get_version
25
- run: echo ::set-output name=VERSION::${GITHUB_REF##*/}
+ run: echo "VERSION=${GITHUB_REF##*/}" >> "${GITHUB_OUTPUT}"
26
27
- name: Generate man page
28
uses: docker://pandoc/core:2.14.2
@@ -36,7 +35,7 @@ jobs:
36
35
--variable=header:"yq (https://github.com/mikefarah/yq/) version ${{ steps.get_version.outputs.VERSION }}"
37
--variable=author:"Mike Farah"
38
--output=yq.1
39
- ${{ steps.gen-man-page-md.outputs.man-page-md }}
+ man.md
40
41
- name: Cross compile
42
0 commit comments