diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-01 16:06:14 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-01 16:06:14 -0700 |
commit | f9148fd279e8af0a145308c96c4f5b5536b1e4e8 (patch) | |
tree | 4d24fb2b0bdb51c99c6eabbc439ddd8bcc665c1d /.github/workflows/main.yaml | |
parent | 398451676d454a9e3ec436ad19c74b3c1bc379e6 (diff) | |
download | sncontinue-f9148fd279e8af0a145308c96c4f5b5536b1e4e8.tar.gz sncontinue-f9148fd279e8af0a145308c96c4f5b5536b1e4e8.tar.bz2 sncontinue-f9148fd279e8af0a145308c96c4f5b5536b1e4e8.zip |
tweaking main.yml
Diffstat (limited to '.github/workflows/main.yaml')
-rw-r--r-- | .github/workflows/main.yaml | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 480405b8..24835d78 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -10,7 +10,7 @@ jobs: pyinstaller: strategy: matrix: - os: [macos-latest] + os: [macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} @@ -21,14 +21,22 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.10" + + - name: Install Pyinstaller + run: | + pip install pyinstaller - name: Install Dependencies run: | - pip install -r continuedev/requirements.txt pyinstaller + pip install -r continuedev/requirements.txt - run: pyinstaller run.py --exclude-module numpy --exclude-module jedi -F + - name: Set permissions + run: | + chmod 777 dist/run + - name: Upload Artifacts uses: actions/upload-artifact@v3 with: |