-
Notifications
You must be signed in to change notification settings - Fork 0
110 lines (91 loc) · 3.09 KB
/
build.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: Build and Release
on:
push:
tags:
- "v*.*.*" # trigger when tag is vX.X.X
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
build-platform: linux/amd64
build-name: crypto-monitor
- os: macos-latest
build-platform: darwin/universal
build-name: crypto-monitor
- os: windows-latest
build-platform: windows/amd64
build-name: crypto-monitor.exe
nsis: "true"
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup GoLang
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install Linux Wails deps
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install libgtk-3-0 libwebkit2gtk-4.0-dev gcc-aarch64-linux-gnu
- name: Install Wails
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
- name: Install Go Dependencies
run: go mod tidy
- name: Install frontend dependencies
run: |
cd frontend
npm install
- name: Build Wails App
run: wails build --platform ${{matrix.build-platform}} -webview2 download -o ${{matrix.build-name}}
env:
GOOS: ${{ matrix.goos }}
GOARCH: "amd64"
- name: Build Windows Installer
if: runner.os == 'Windows' && matrix.nsis == 'true'
run: wails build --platform ${{matrix.build-platform}} -webview2 download -nsis -o ${{matrix.build-name}}
- name: Add macOS perms
if: runner.os == 'macOS'
run: chmod +x build/bin/*/Contents/MacOS/*
- name: Add Linux perms
if: runner.os == 'Linux'
run: chmod +x build/bin/*
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: crypto-monitor-${{ matrix.os }}
path: build/bin/*
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download Artifacts
uses: actions/download-artifact@v3
with:
path: ./artifacts
- name: Get Version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ steps.get_version.outputs.VERSION }}
draft: false
prerelease: false
- name: Upload Windows Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./artifacts/crypto-monitor-windows-latest/crypto-monitor.exe
asset_name: crypto-monitor-${{ steps.get_version.outputs.VERSION }}-windows-amd64.exe