Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Add renovate.json

Add renovate.json #21

Workflow file for this run

name: Build
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 16
uses: actions/setup-java@v1
with:
java-version: 16
- name: Build plugin jar
id: build
run: |
chmod +x ./gradlew
./gradlew jar
echo '::set-output name=ARTIFACT_PATH::'$(./gradlew getArtifactPath -q)
- name: Upload built jar file
uses: actions/upload-artifact@v2
with:
name: ${{ github.event.repository.name }}
path: ${{ steps.build.outputs.ARTIFACT_PATH }}