Skip to content

Commit

Permalink
Add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell committed Oct 18, 2024
1 parent 6402b54 commit de817fc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish-to-maven-central.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish to Maven Central

on:
push:
tags:
- "*"
branches:
- ci/publish-to-maven

jobs:
publish:
name: Publish
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Preconfigure gradle
uses: ./.github/actions/prepare-gradle

- name: Publish to Maven Central
run: ./gradlew publishAllPublicationsToMavenCentralRepository

0 comments on commit de817fc

Please sign in to comment.