Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
gatooooooo authored Dec 1, 2024
1 parent a496a38 commit f3427d1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Compile and upload build client

on:
push:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read

steps:
- uses: actions/checkout@v4
- name: Set up java 8
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 8
cache: "gradle"

- name: Build Glide Client with Gradle Wrapper
run: chmod +x ./gradlew build

- name: Upload Glide Jar to Actions
uses: actions/[email protected]
with:
name: GlideClient
path: build/libs/GlideClient-Release.jar

0 comments on commit f3427d1

Please sign in to comment.