Skip to content

Commit 85d36d2

Browse files
committed
fix exit code with correct output file
1 parent d1e3c2b commit 85d36d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
name: Test
6262
run: |
6363
docker run --rm -i -v $PWD/tests:/input -v $PWD/tests/:/reads -v $PWD/output:/out -v $PWD/run:/run ${{ env.TEST_TAG }} --tree --standalone_path /input/marker_genes --dna_reference /input/dna_ref.fa --reads /reads/sample_1.fastq --output_path /out/output --debug --threads 1
64-
if [ ! -f output/tree_sample_1.nwk ] ; then exit 1; fi
64+
if [ ! -f /out/output/tree_sample_1.nwk ] ; then exit 1; fi
6565
-
6666
name: Login to DockerHub
6767
if: github.event_name != 'pull_request' && github.event_name != 'push'

0 commit comments

Comments
 (0)