Skip to content

fix: add debug logging for number and token processing in ExpressionP… #749

fix: add debug logging for number and token processing in ExpressionP…

fix: add debug logging for number and token processing in ExpressionP… #749

Workflow file for this run

name: Java CI
on: [push]
jobs:
buildJar:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build plugin jar
run: ./gradlew jar
- name: Upload built jar file
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}
path: build/libs/${{ github.event.repository.name }}.jar
- uses: 'marvinpinto/action-automatic-releases@latest'
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: 'latest'
prerelease: false
title: 'Release'
files: |
build/libs/${{ github.event.repository.name }}.jar