From a00c6f789a381572b6f53cb537774fcba12f7bd1 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 12 Jan 2023 13:03:06 +0000 Subject: [PATCH] windows-build/tar: Adjust argument ordering `-C ..` applies to anything that happens after it, so needs to be after the `-f `. --- .github/workflows/windows-build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-build.yml b/.github/workflows/windows-build.yml index a7a8a5da..20b48c30 100644 --- a/.github/workflows/windows-build.yml +++ b/.github/workflows/windows-build.yml @@ -29,8 +29,9 @@ jobs: run: | # For 'tar' we can only specify filename/glob exclusions, not any # directory location - tar -C .. -c -v -z \ - -f EDMarketConnector/EDMarketConnector-release-${{ needs.variables.outputs.sem_ver }}.tar.gz \ + tar -c -v -z \ + -f EDMarketConnector-release-${{ needs.variables.outputs.sem_ver }}.tar.gz \ + -C .. \ --exclude=EDMarketConnector-release-*.* \ --exclude=.editorconfig \ --exclude=.flake8 \