panel will not launch with cytoscape #28
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: Github Action to update JAR | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- "src/main/**.java" | |
- .github/workflows/jar_build.yml | |
- pom.xml | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- "src/main/**.java" | |
- .github/workflows/jar_build.yml | |
- pom.xml | |
jobs: | |
Build-And-Replace-JAR: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build Package | |
run: mvn install | |
- name: Replace JAR | |
run: | | |
rm -f ./*.jar | |
cp ./target/*.jar ./. | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Auto update JAR |