Skip to content

🐛 Trying to debug GitHub action #144

🐛 Trying to debug GitHub action

🐛 Trying to debug GitHub action #144

Workflow file for this run

name: Java auto build with Gradle
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up JDK 1.8
uses: actions/[email protected]
with:
java-version: 8
distribution: "adopt"
java-package: jdk
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle, using shadowJar
run: ./gradlew clean shadowJar --stacktrace
- name: Upload artifact
uses: actions/[email protected]
with:
name: Compile BungeeSK
path: build/libs/**