[Update]: Bump com.vanniktech.maven.publish from 0.31.0 to 0.32.0 #484
This file contains hidden or 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, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
cache: gradle | |
- name: Grant Permission to Execute | |
run: chmod +x gradlew | |
- name: 🏗 Build with Gradle 🛠️ | |
run: ./gradlew build --stacktrace |