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 18:23:27 +01:00

30 lines
734 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@3c97c67b0b1afec7ece65ce789a405918d4ec45e
with:
build-name: strimertul
build-platform: ${{ matrix.build.platform }}
windows-nsis-installer: false
macos-package-type: dmg
go-version: 1.19