1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 16:27:13 +03:00

windows-build/tar: Adjust argument ordering

`-C ..` applies to anything that happens after it, so needs to be after the
`-f <file>`.
This commit is contained in:
Athanasius 2023-01-12 13:03:06 +00:00
parent d52f161dc9
commit a00c6f789a
No known key found for this signature in database
GPG Key ID: 772697E181BB2767

View File

@ -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 \