Skip to content

Commit fec0d69

Browse files
author
Footagesus
committed
Cherry-pick few files from PR #36
1 parent 525b03f commit fec0d69

File tree

2 files changed

+45
-2
lines changed

2 files changed

+45
-2
lines changed

.github/workflows/blank.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Build WindUI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v5
18+
with:
19+
node-version: 18
20+
21+
- name: Install dependencies
22+
run: npm install
23+
24+
- name: Setup Lua
25+
uses: leafo/gh-actions-lua@v11
26+
with:
27+
luaVersion: "5.1"
28+
29+
- name: Setup Aftman
30+
uses: ok-nick/[email protected]
31+
32+
- name: Install Rojo, Lune and DarkLua
33+
run: aftman install
34+
35+
- name: Run build
36+
run: sh build/build.sh build
37+
38+
- name: Upload dist
39+
uses: actions/upload-artifact@v4
40+
with:
41+
name: windui-dist
42+
path: dist/

aftman.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33

44
# To add a new tool, add an entry to this table.
55
[tools]
6-
darklua = "seaofvoices/[email protected]"
7-
# rojo = "rojo-rbx/[email protected]"
6+
rojo = "rojo-rbx/[email protected]"
7+
darklua = "seaofvoices/[email protected]"
8+
lune = "filiptibell/[email protected]"

0 commit comments

Comments
 (0)