We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5edffc3 commit f364f05Copy full SHA for f364f05
1 file changed
.github/workflows/ci.yaml.yml
@@ -47,9 +47,10 @@ jobs:
47
mkdir -p dist
48
ARCHIVE_NAME="${{ steps.version.outputs.archive_name }}"
49
rsync -av \
50
- --exclude="tsrc/node_modules" \
51
- --exclude="dist" \
52
- ./ "dist/${FOLDER}/"
+ --exclude='.git' \
+ --exclude='tsrc/node_modules' \
+ --exclude='dist' \
53
+ ./ "dist/${ARCHIVE_NAME}/"
54
cd dist
55
zip -r "${ARCHIVE_NAME}.zip" "${ARCHIVE_NAME}/"
56
tar -czvf "${ARCHIVE_NAME}.tar.gz" "${ARCHIVE_NAME}/"
@@ -58,8 +59,8 @@ jobs:
58
59
with:
60
name: Artefacts
61
path: |
- dist/"${{ steps.version.outputs.archive_name }}.zip"
62
- dist/"${{ steps.version.outputs.archive_name }}.tar.gz"
+ dist/"${ARCHIVE_NAME}.zip"
63
+ dist/"${ARCHIVE_NAME}.tar.gz"
64
65
66
0 commit comments