-
-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (42 loc) · 1.05 KB
/
main.yml
File metadata and controls
47 lines (42 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Wails build
on:
push:
tags:
- '*' # Ejecuta en cualquier nuevo tag
permissions:
contents: write
jobs:
build:
name: Build ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: LibreRemotePlay-linux-amd64
platform: linux/amd64
os: ubuntu-latest
- name: LibreRemotePlay-amd64.exe
platform: windows/amd64
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Wails build
uses: dAppServer/wails-build-action@main
with:
build-name: ${{ matrix.name }}
build-platform: ${{ matrix.platform }}
package: false
go-version: 1.24.2
- name: Upload release
uses: softprops/action-gh-release@v1
with:
files:
build/bin/*