From 1ac04b66e822ed544ad16f5baa8e83d529fa728a Mon Sep 17 00:00:00 2001 From: Jennings Zhang Date: Fri, 17 Sep 2021 13:32:06 -0400 Subject: [PATCH] Fix comparison --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9632d3..f1a8ab2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: pl-office-convert office_convert /incoming /outgoing echo "::set-output name=output_dir::$test_output" - name: Assert outputs - run: diff -rq '${{ github.workspace }}/examples/incoming' '${{ steps.run_example.outputs.output_dir }}' + run: diff -rq '${{ github.workspace }}/examples/outgoing' '${{ steps.run_example.outputs.output_dir }}' publish: if: github.event_name == 'push' || github.event_name == 'release'