Skip to content

Commit

Permalink
Create placeholderapi.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KaspianDev authored Nov 5, 2023
1 parent b3d02ff commit 3da4338
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/placeholderapi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: PlaceholderAPI Build

on:
push:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-20.04
if: "!startsWith(github.event.head_commit.message, 'ci-skip')"

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

- name: Build artifacts
run: ./gradlew build

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
path: build/libs/*.jar

0 comments on commit 3da4338

Please # to comment.