Skip to content

Commit

Permalink
(repo) add README and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
theMackabu committed Aug 6, 2022
1 parent 52753f3 commit 4196594
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
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
19 changes: 19 additions & 0 deletions README.md
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
```

0 comments on commit 4196594

Please sign in to comment.