Merge pull request #53 from thinknathan/master #55
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
name: CI/CD | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Setup Defold | |
uses: dapetcu21/[email protected] | |
- name: Install Dependencies | |
run: npm install | |
- name: Genrate lua w/ ts-defold | |
run: npm run build | |
- name: Build | |
run: 'java -jar $BOB --root ./app --archive --platform js-web --verbose resolve distclean build bundle' |