Skip to content

Commit

Permalink
👷 Add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
CallMeEchoCodes committed Jun 21, 2024
1 parent 0c68cea commit 5964b8b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build
on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1
- uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "microsoft"
- run: chmod +x ./gradlew
- run: ./gradlew build
- uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/

0 comments on commit 5964b8b

Please sign in to comment.