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