Merge remote-tracking branch 'upstream/master' #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Release | |
on: | |
push: | |
tags: | |
- '*-migemo' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
# either 'goreleaser' (default) or 'goreleaser-pro' | |
distribution: goreleaser | |
# 'latest', 'nightly', or a semver | |
version: '~> v2' | |
args: build --clean --snapshot --skip=post-hooks | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Zip files | |
run: | | |
cd dist | |
mkdir tmp | |
for i in fzf* | |
do | |
zip -ry tmp/"$i" "$i" | |
done | |
cd .. | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: dist/tmp/* | |
tag: ${{ github.ref }} | |
overwrite: true | |
file_glob: true | |
body: |- | |
以下の migemo 対応パッチをあてただけ | |
fzf 日本語拡張パッチ | |
https://github.com/takumayokoo/fzf-jp-extension | |
- name: Delete older releases | |
uses: jay2610/[email protected] | |
with: | |
keep_latest: 1 | |
delete_tags: true | |
delete_type: 'release' | |
target_branch: 'master' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |