Skip to content

Commit

Permalink
Add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sealor committed Jul 7, 2023
1 parent feefa3b commit f9101f2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build

on:
pull_request:
push:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]

- name: Set up our JDK environment
uses: actions/[email protected]
with:
java-version: 1.8

- name: Build all artifacts
id: buildAllApks
uses: eskatos/[email protected]
with:
# gradle-version: current
# wrapper-cache-enabled: true
# dependencies-cache-enabled: true
# configuration-cache-enabled: true
arguments: assembleRelease

0 comments on commit f9101f2

Please sign in to comment.