2020-12-22 08:56:56 +00:00
|
|
|
name: Release YQ
|
2020-11-06 02:46:36 +00:00
|
|
|
on:
|
2020-12-22 08:19:48 +00:00
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
2022-04-11 23:36:52 +00:00
|
|
|
- 'draft-*'
|
2020-11-06 02:46:36 +00:00
|
|
|
|
|
|
|
jobs:
|
2020-12-22 08:19:48 +00:00
|
|
|
publishGitRelease:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-12 21:58:30 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-11 22:55:42 +00:00
|
|
|
- uses: actions/setup-go@v5
|
2020-12-22 09:01:21 +00:00
|
|
|
with:
|
2023-02-10 17:06:16 +00:00
|
|
|
go-version: '^1.20'
|
2022-10-23 03:50:00 +00:00
|
|
|
check-latest: true
|
2021-10-21 08:32:01 +00:00
|
|
|
- name: Compile man page markup
|
|
|
|
id: gen-man-page-md
|
|
|
|
run: |
|
|
|
|
./scripts/generate-man-page-md.sh
|
|
|
|
|
|
|
|
- name: Get the version
|
|
|
|
id: get_version
|
2022-11-14 06:40:12 +00:00
|
|
|
run: echo "VERSION=${GITHUB_REF##*/}" >> "${GITHUB_OUTPUT}"
|
2021-11-20 16:55:16 +00:00
|
|
|
|
2021-10-21 08:32:01 +00:00
|
|
|
- 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
|
2022-11-14 06:40:12 +00:00
|
|
|
man.md
|
2021-11-20 16:55:16 +00:00
|
|
|
|
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
|
2021-10-21 08:32:01 +00:00
|
|
|
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
|
|
|
|
2022-04-11 23:33:52 +00:00
|
|
|
- name: Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
2020-12-22 08:19:48 +00:00
|
|
|
with:
|
2022-04-11 23:33:52 +00:00
|
|
|
files: build/*
|
2022-04-11 23:49:08 +00:00
|
|
|
draft: true
|
2022-04-11 23:33:52 +00:00
|
|
|
fail_on_unmatched_files: true
|