-
-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (30 loc) · 895 Bytes
/
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
name: CI/CD
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Defold
uses: dapetcu21/[email protected]
- name: Install Dependencies
run: npm install
- name: Generate lua w/ ts-defold
run: npm run build
- name: Build
run: 'java -jar $BOB --root ./app --archive --platform js-web --bundle-output ./bundle --verbose resolve distclean build bundle'
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: bundle/tsd-template-yagames