yq/.github/workflows/release.yml

62 lines
1.7 KiB
YAML
Raw Normal View History

2020-12-22 08:56:56 +00:00
name: Release YQ
on:
2020-12-22 08:19:48 +00:00
push:
tags:
- 'v*'
jobs:
2020-12-22 08:19:48 +00:00
publishGitRelease:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2020-12-22 09:01:21 +00:00
- uses: actions/setup-go@v2
with:
2022-03-28 03:18:55 +00:00
go-version: '^1.18'
- name: Compile man page markup
id: gen-man-page-md
run: |
./scripts/generate-man-page-md.sh
echo "::set-output name=man-page-md::man.md"
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF##*/}
- name: Generate man page
uses: docker://pandoc/core:2.14.2
id: gen-man-page
with:
args: >-
--standalone
--to man
--variable=title:"YQ"
--variable=section:"1"
--variable=header:"yq (https://github.com/mikefarah/yq/) version ${{ steps.get_version.outputs.VERSION }}"
--variable=author:"Mike Farah"
--output=yq.1
${{ steps.gen-man-page-md.outputs.man-page-md }}
2020-12-22 08:19:48 +00:00
- name: Cross compile
2020-12-22 08:52:44 +00:00
run: |
2020-12-22 08:56:56 +00:00
sudo apt-get install rhash -y
2022-03-28 03:36:27 +00:00
go install github.com/mitchellh/gox@v1.0.1
mkdir -p build
cp yq.1 build/yq.1
2020-12-22 08:52:44 +00:00
./scripts/xcompile.sh
2020-12-22 08:19:48 +00:00
- name: Create Release
id: create_release
uses: actions/create-release@v1.1.4
2020-12-22 08:19:48 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: true
prerelease: false
- uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build/*