feat: upgrade dependencies (#3) #28
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: Compile and Deploy Java Api to Maven Central | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
java-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code from ${{ github.repository }}/${{ github.ref }} | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Write gradle.properties | |
run: | | |
mkdir -p ~/.gradle | |
echo "${{ secrets.GRADLE_PROPERTIES }}" | base64 -d > ~/.gradle/gradle.properties | |
- name: Install gpg secret key | |
run: | | |
cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import | |
gpg --pinentry-mode loopback --passphrase "${{ secrets.OSSRH_GPG_SECRET_PASSWORD }}" --export-secret-key 568FD16F857171A0EC6D2C40742C84722FD2B235 > ~/.gradle/maven-central.gpg | |
gpg --list-secret-keys --keyid-format LONG | |
- name: Update permissions | |
working-directory: . | |
run: chmod +x ./gradlew ./.github/scripts/*.sh | |
- name: Check version | |
working-directory: . | |
run: ./.github/scripts/check_version.sh | |
- name: Build and Publish | |
working-directory: . | |
run: ./gradlew build test publish --info --stacktrace |