Skip to content

Commit

Permalink
attempt to publish to maven through jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
dekm committed Mar 27, 2024
1 parent fd7f077 commit 4be1f06
Show file tree
Hide file tree
Showing 2 changed files with 201 additions and 498 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/jitpack-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Maven Release Package

on:
release:
types: [created]
workflow_dispatch:

jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'

# Optional: Import GPG Key for signing
- name: Import GPG Key
if: github.event_name == 'release' # Only for release events
uses: crazy-max/ghaction-import-gpg@v3
with:
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}

- name: Build with Maven
run: mvn clean install -B --file pax-sdk/pom.xml

# Optionally, add a step to tag your release
- name: Create Tag
if: github.event_name == 'release'
run: git tag ${{ github.event.release.tag_name }} && git push origin ${{ github.event.release.tag_name }}
Loading

0 comments on commit 4be1f06

Please sign in to comment.