Merge pull request #1 from Kiolk/dev #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to Maven Central Repository | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
name: Publish to Maven Central Repository | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'zulu' | |
- name: Setup variables in local.properties | |
run: | | |
echo "signing_keyId=${{secrets.SIGNING_KEY_ID}}" > local.properties | |
echo "signing_password=${{secrets.SIGNING_PASSWORD}}" >> local.properties | |
echo "username=${{secrets.MAVEN_CENTRAL_USER_NAME}}" >> local.properties | |
echo "password=${{secrets.MAVEN_CENTRAL_PASSWORD}}" >> local.properties | |
- name: Setup gpg private key | |
run: | | |
echo "${{secrets.GPG_PRIVATE_KEY}}" > maven-secret-key.asc | |
- name: Publish to new Maven Central Repository | |
run: | | |
./gradlew publishAllPublicationsToCentralPortal | |