Skip to content

New app logo and adds the app icon to Cytoscape's toolbar. #26

New app logo and adds the app icon to Cytoscape's toolbar.

New app logo and adds the app icon to Cytoscape's toolbar. #26

Workflow file for this run

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