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

Commit

Permalink
build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Oct 4, 2023
1 parent 865df41 commit a3e0265
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: build
on:
workflow_dispatch:
pull_request:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:

- name: checkout repository
uses: actions/checkout@v3

- name: make gradle wrapper executable
run: chmod +x ./gradlew

- name: setup Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: gradle

- name: build
run: ./gradlew build

- name: capture build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/

0 comments on commit a3e0265

Please sign in to comment.