Skip to content

Commit

Permalink
Fix zipping
Browse files Browse the repository at this point in the history
  • Loading branch information
markaspot committed Dec 5, 2023
1 parent da1992e commit d575ebb
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/zip-maplibs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@ jobs:
- name: Install PHP dependencies
run: composer install --no-dev

# Zip the mapbox-gl and maplibre-gl directories
- name: Zip mapbox-gl library
run: |
cd web/libraries/mapbox-gl
zip -r ../../../../mapbox-gl.zip . -x "*.git*"
run: zip -jr mapbox-gl.zip web/libraries/mapbox-gl -x "*.git*"

- name: Zip maplibre-gl library
run: |
cd web/libraries/maplibre-gl
zip -r ../../../../maplibre-gl.zip . -x "*.git*"
run: zip -jr maplibre-gl.zip web/libraries/maplibre-gl -x "*.git*"


- name: Setup Node.js
uses: actions/setup-node@v2
Expand Down

0 comments on commit d575ebb

Please sign in to comment.