Skip to content

Commit

Permalink
Create publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
RawDiamondMC authored Sep 7, 2024
1 parent 31abeba commit 52a257a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish

on: workflow_dispatch

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew build
- name: Publish to GitHub Packages
run: ./gradlew publish

0 comments on commit 52a257a

Please sign in to comment.