Hilbish/.github/workflows/release.yml

47 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2022-03-06 18:44:28 +00:00
name: Release
2022-03-06 18:40:02 +00:00
on:
push:
tags:
- v[0-9]+.*
jobs:
create-release:
runs-on: ubuntu-latest
steps:
2024-05-03 16:47:24 +00:00
- uses: actions/checkout@v4
2022-03-06 18:40:02 +00:00
- uses: taiki-e/create-gh-release-action@v1
with:
title: Hilbish $tag
changelog: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
releases-matrix:
name: Build Release Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: ["386", amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
- goarch: arm64
goos: windows
steps:
2024-05-03 16:47:24 +00:00
- uses: actions/checkout@v4
2022-03-13 02:30:16 +00:00
with:
submodules: true
2022-12-15 01:32:21 +00:00
fetch-depth: 0
- name: Download Task
run: 'sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d'
2023-12-26 04:18:27 +00:00
- uses: wangyoucao577/go-release-action@v1
2022-03-06 18:40:02 +00:00
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
2022-12-21 02:14:04 +00:00
ldflags: '-s -w'
2022-03-06 18:40:02 +00:00
binary_name: hilbish
extra_files: LICENSE README.md CHANGELOG.md .hilbishrc.lua nature libs docs emmyLuaDocs