diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-08 11:34:14 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-08 11:34:14 -0700 |
commit | b82d83f79389897ed5f05eb9b5e8daf9cf64ee6f (patch) | |
tree | 352f07f52ea5aabb08b69f89c55ba571050df384 /.github/workflows | |
parent | 160723abdbc336afc260e5aa6b103b27c5c27909 (diff) | |
download | sncontinue-b82d83f79389897ed5f05eb9b5e8daf9cf64ee6f.tar.gz sncontinue-b82d83f79389897ed5f05eb9b5e8daf9cf64ee6f.tar.bz2 sncontinue-b82d83f79389897ed5f05eb9b5e8daf9cf64ee6f.zip |
fix: :bug: add data file for ca_bundle
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yaml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 82e4c78e..03c33dba 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -31,13 +31,8 @@ jobs: run: | pip install -r continuedev/requirements.txt - - name: Build PyInstaller Executable for Windows - run: pyinstaller run.py --exclude-module numpy --exclude-module jedi -F --add-data 'continuedev;continuedev' --hidden-import=anthropic --hidden-import=github --hidden-import=ripgrepy - if: matrix.os == 'windows-latest' - - - name: Build PyInstaller Executable for Mac/Linux - run: pyinstaller run.py --exclude-module numpy --exclude-module jedi -F --add-data 'continuedev:continuedev' --hidden-import=anthropic --hidden-import=github --hidden-import=ripgrepy - if: matrix.os != 'windows-latest' + - name: Build PyInstaller Executable + run: pyinstaller run.spec - name: Set permissions run: | |