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 20cb7fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/zip-maplibs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,17 @@ 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*"
zip -r ../../mapbox-gl.zip . -x "*.git*"
- name: Zip maplibre-gl library
run: |
cd web/libraries/maplibre-gl
zip -r ../../../../maplibre-gl.zip . -x "*.git*"
zip -r ../../maplibre-gl.zip . -x "*.git*"
- name: Setup Node.js
uses: actions/setup-node@v2
Expand Down

0 comments on commit 20cb7fb

Please sign in to comment.