We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12432a2 commit a644540Copy full SHA for a644540
.github/workflows/test_main.yml
@@ -29,8 +29,13 @@ jobs:
29
run: |
30
mvn clean install org.apache.maven.plugins:maven-shade-plugin:3.2.4:shade -Dshade.mainClass=io.bioimage.modelrunner.pytorch.PytorchInterface
31
32
+ - name: Write Version to File
33
+ run: |
34
+ echo "$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" > version.txt
35
+ echo "JAR_PATH=target/dl-modelrunner-$(cat version.txt).jar" >> $GITHUB_ENV
36
+ shell: bash
37
38
- name: Run Specific Class (Unix)
39
shell: bash
40
- java -cp $JAR_PATH io.bioimage.modelrunner.pytorch.PytorchInterface
41
+ java -cp $JAR_PATH io.bioimage.modelrunner.pytorch.PytorchInterface
0 commit comments