ignore all hidden files when creating zip

This commit is contained in:
Fabian Aguilar Gomez
2024-09-06 15:26:51 -05:00
committed by GitHub
parent 1780dfc2ce
commit 7abc80a9c4

View File

@@ -32,6 +32,7 @@ runs:
-cvf "$RUNNER_TEMP/artifact.tar" \
--exclude=.git \
--exclude=.github \
--exclude=".*" \
.
echo ::endgroup::
env:
@@ -49,6 +50,7 @@ runs:
-cvf "$RUNNER_TEMP/artifact.tar" \
--exclude=.git \
--exclude=.github \
--exclude=".*" \
.
echo ::endgroup::
env:
@@ -66,6 +68,7 @@ runs:
-cvf "$RUNNER_TEMP\artifact.tar" \
--exclude=.git \
--exclude=.github \
--exclude=".*" \
--force-local \
"."
echo ::endgroup::