Jelajahi Sumber

Prevent the data dir being added directly to exe

Arkadiusz Ryś 2 tahun lalu
induk
melakukan
add4f073a2
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      .gitlab-ci.yml

+ 2 - 2
.gitlab-ci.yml

@@ -57,12 +57,12 @@ build-windows-exe:
   script:
     - xvfb-run sh -c "wine pip install --no-warn-script-location -r requirements.py; wineserver -w"
 #    - xvfb-run sh -c "wine pyinstaller graph_exploring_tool/__main__.py --onefile --add-data data:data --collect-all graph-exploring-tool --windowed --noconfirm; wineserver -w"
-    - xvfb-run sh -c "wine pyinstaller graph_exploring_tool/__main__.py --onefile --add-data data:data --windowed --noconfirm; wineserver -w"
+    - xvfb-run sh -c "wine pyinstaller graph_exploring_tool/__main__.py --onefile --windowed --noconfirm; wineserver -w"
     - mkdir -p dist/data/
     - cp -r data/* dist/data/
   only:
     - tags
   artifacts:
-    name: "graph-exploring-tool-%$CI_COMMIT_TAG.zip"
+    name: "graph_exploring_tool%$CI_COMMIT_TAG"
     paths:
       - ./dist/*