Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
build Ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cubewhy committed Jul 26, 2023
1 parent a25004b commit 3b88dbf
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'zulu'
- name: Build with Gradle
run: chmod +x ./gradlew && ./gradlew setupCiWorkspace && ./gradlew build
- uses: actions/upload-artifact@v3
with:
name: LiquidLunarForge
path: build/libs

0 comments on commit 3b88dbf

Please sign in to comment.