add @dependabot config #69
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: Build | |
on: | |
[push] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: temurin | |
cache: 'maven' | |
gpg-private-key: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }} | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE | |
- name: Cache SonarCloud packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Build and Test | |
run: > | |
mvn -B verify | |
jacoco:report | |
org.sonarsource.scanner.maven:sonar-maven-plugin:sonar | |
-Pcoverage | |
-Dsonar.projectKey=coffeelibs_tiny-oauth2-client | |
-Dsonar.organization=coffeelibs | |
-Dsonar.host.url=https://sonarcloud.io | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
- name: Deploy to GitHub Packages | |
if: startsWith(github.ref, 'refs/tags/') | |
run: mvn -B deploy -Psign,deploy-github -DskipTests --no-transfer-progress | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }} | |
- uses: actions/setup-java@v3 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
java-version: 21 | |
distribution: temurin | |
cache: 'maven' | |
server-id: ossrh | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
- name: Deploy to OSSRH | |
if: startsWith(github.ref, 'refs/tags/') | |
run: mvn -B deploy -Psign,deploy-central -DskipTests --no-transfer-progress | |
env: | |
MAVEN_OPTS: > | |
--add-opens=java.base/java.util=ALL-UNNAMED | |
--add-opens=java.base/java.lang.reflect=ALL-UNNAMED | |
--add-opens=java.base/java.text=ALL-UNNAMED | |
--add-opens=java.desktop/java.awt.font=ALL-UNNAMED | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }} | |
- name: Release | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: softprops/action-gh-release@v1 | |
with: | |
generate_release_notes: true |