We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c1d050 commit dd92aa8Copy full SHA for dd92aa8
1 file changed
.github/workflows/release.yml
@@ -21,8 +21,9 @@ jobs:
21
- name: Prepare files
22
run: |
23
mkdir cache-everything
24
- mv * .[^.]* cache-everything
25
-
+ shopt -s extglob
+ mv !(cache-everything) cache-everything/
26
+
27
- name: Create Zip File
28
run: zip -r cache-everything-${GITHUB_REF_NAME}.zip cache-everything/ -x "*.git*" -x "cache-everything/node_modules/*" -x "cache-everything/Dockerfile" -x "cache-everything/docker-compose.yml"
29
@@ -57,3 +58,4 @@ jobs:
57
58
asset_content_type: application/zip
59
env:
60
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61
0 commit comments