-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52753f3
commit 4196594
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: build | ||
on: | ||
push: | ||
tags: | ||
- '!**pre**' | ||
jobs: | ||
build: | ||
name: Test Build Latest Release | ||
if: "contains(github.event.head_commit.message, '[run build]')" | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
steps: | ||
- name: Set up Go 1.16 | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: 1.17 | ||
id: go | ||
|
||
- name: Checkout the repo | ||
uses: actions/checkout@v1 | ||
|
||
- name: Get wails build tool | ||
run: | | ||
go install github.com/wailsapp/wails/v2/cmd/wails@latest | ||
- name: Build application | ||
run: wails build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### Lilith Launcher (v2) | ||
|
||
##### used: | ||
|
||
- react | ||
- wails | ||
- tailwind | ||
|
||
#### build steps | ||
|
||
``` | ||
wails build | ||
``` | ||
|
||
#### dev steps | ||
|
||
``` | ||
wails dev | ||
``` |