mirror of
https://github.com/squeek502/Squake.git
synced 2025-08-04 02:07:37 -04:00
Add GitHub Actions support (#1)
Adds GitHub Action that compiles every commit and releases artifacts if successful.
This commit is contained in:
parent
2696abb141
commit
7287105d7d
31
.github/workflows/gradle.yml
vendored
Normal file
31
.github/workflows/gradle.yml
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
# This workflow will build a Java project with Gradle
|
||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
|
||||
|
||||
name: Java CI with Gradle
|
||||
|
||||
on:
|
||||
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
|
||||
- name: Upload a Build Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Artifacts
|
||||
path: build/libs/
|
Loading…
x
Reference in New Issue
Block a user