mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-08 07:57:28 +00:00
24 lines
438 B
YAML
24 lines
438 B
YAML
|
name: Build
|
||
|
|
||
|
on: workflow_dispatch
|
||
|
# push:
|
||
|
# branches: [ master ]
|
||
|
# pull_request:
|
||
|
# branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: set up JDK 1.8
|
||
|
uses: actions/setup-java@v1
|
||
|
with:
|
||
|
java-version: 1.8
|
||
|
- name: Grant execute permission for gradlew
|
||
|
run: chmod +x gradlew
|
||
|
- name: Build with Gradle
|
||
|
run: ./gradlew build
|