1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-18 01:50:50 +00:00
strimertul/.github/workflows/release.yml
2022-11-25 19:07:38 +01:00

31 lines
725 B
YAML

name: Release
on:
push:
tags:
- "v*.*.*"
- "v*.*.*-beta.*"
- "v*.*.*-rc.*"
jobs:
build:
strategy:
fail-fast: false
matrix:
build: [
{ platform: linux/amd64, os: ubuntu-latest },
{ platform: windows/amd64, os: windows-latest },
{ platform: darwin/universal, os: macos-latest }
]
runs-on: ${{ matrix.build.os }}
steps:
- uses: actions/checkout@v2
- uses: ashkeel/wails-build-action@a56973d
with:
build-name: strimertul
build-platform: ${{ matrix.build.platform }}
windows-nsis-installer: false
macos-package-type: dmg
use-upx: true
go-version: 1.19