mirror of
https://github.com/love2d/love-android.git
synced 2026-08-12 08:31:04 +02:00
Testing the Actions.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
name: build
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Setup Java 8
|
||||
uses: actions/setup-java@v1.3.0
|
||||
with:
|
||||
java-version: 1.8
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Submodule Init
|
||||
run: git submodule sync --recursive && git submodule update --init --force --recursive
|
||||
- name: Build
|
||||
run: bash ./gradlew assembleRelease
|
||||
- name: Artifact
|
||||
uses: actions/upload-artifact@v1.0.0
|
||||
with:
|
||||
name: unsigned-apk
|
||||
path: app/build/outputs/apk
|
||||
Reference in New Issue
Block a user