Skip to content

Commit dfaf5a1

Browse files
author
erroreyes
committed
do not include root dir in zip file (6 - screw it; keep it simple) ; uncomment win and mac...
1 parent a67c737 commit dfaf5a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
matrix:
2424
include:
2525
- { name: ubuntu-20.04, os: ubuntu-20.04, cross-target: '' }
26-
# - { name: macos-universal, os: macos-11, cross-target: aarch64-apple-darwin }
27-
# - { name: windows, os: windows-latest, cross-target: '' }
26+
- { name: macos-universal, os: macos-11, cross-target: aarch64-apple-darwin }
27+
- { name: windows, os: windows-latest, cross-target: '' }
2828
name: Package plugin binaries
2929
runs-on: ${{ matrix.os }}
3030
steps:
@@ -138,7 +138,7 @@ jobs:
138138
dir_name="${directory%/}"
139139
140140
# Create a zip archive with the directory name
141-
zip -r "${dir_name}.zip" "$dir_name/*"
141+
zip -r "${dir_name}.zip" "$dir_name"
142142
done
143143
144144
- name: Check content after zipping

0 commit comments

Comments
 (0)