diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7c92295c62067679ae691340296a8e6e126aa284..d1d4681ed95e92b7ecdecab92ff4bcd95614ffd4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,14 +38,14 @@ import-convert-assets: - curl --header PRIVATE-TOKEN:"$ECOLYO_ASSETS_TOKEN" https://forge.grandlyon.com/api/v4/projects/409/repository/archive?path=src/assets/icons/email --output email.tar.gz - tar -xf email.tar.gz - cd *-email/src/assets/icons/email - - for file in *.svg; do inkscape --export-type="png" -w 200 -h 200 $file; done + - for file in *.svg; do inkscape --export-type="png" $file; done - rm *.svg - cd ~ # Fetch and convert ecogesture assets - curl --header PRIVATE-TOKEN:"$ECOLYO_ASSETS_TOKEN" https://forge.grandlyon.com/api/v4/projects/409/repository/archive?path=src/assets/icons/visu/ecogesture --output ecogesture.tar.gz - tar -xf ecogesture.tar.gz - cd *-ecogesture/src/assets/icons/visu/ecogesture - - for file in *.svg; do inkscape --export-type="png" -w 200 -h 200 $file; done + - for file in *.svg; do inkscape --export-type="png" $file; done - rm *.svg # Cleanup - cd ~