summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/main.yaml54
1 files changed, 27 insertions, 27 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index 55df9c03..158b8ef2 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -7,41 +7,41 @@ on:
- package-python
jobs:
- # pyinstaller:
- # strategy:
- # matrix:
- # os: [macos-latest, ubuntu-latest, windows-latest]
+ pyinstaller:
+ strategy:
+ matrix:
+ os: [macos-latest, ubuntu-latest, windows-latest]
- # runs-on: ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
- # steps:
- # - name: Check-out repository
- # uses: actions/checkout@v3
+ steps:
+ - name: Check-out repository
+ uses: actions/checkout@v3
- # - name: Set up Python
- # uses: actions/setup-python@v4
- # with:
- # python-version: "3.10"
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.10"
- # - name: Install Pyinstaller
- # run: |
- # pip install pyinstaller
+ - name: Install Pyinstaller
+ run: |
+ pip install pyinstaller
- # - name: Install Dependencies
- # run: |
- # pip install -r continuedev/requirements.txt
+ - name: Install Dependencies
+ run: |
+ pip install -r continuedev/requirements.txt
- # - run: pyinstaller run.py --exclude-module numpy --exclude-module jedi -F
+ - run: pyinstaller run.py --exclude-module numpy --exclude-module jedi -F
- # - name: Set permissions
- # run: |
- # chmod 777 dist/run
+ - name: Set permissions
+ run: |
+ chmod 777 dist/run
- # - name: Upload Artifacts
- # uses: actions/upload-artifact@v3
- # with:
- # name: ${{ runner.os }} Build
- # path: dist/*
+ - name: Upload Artifacts
+ uses: actions/upload-artifact@v3
+ with:
+ name: ${{ runner.os }} Build
+ path: dist/*
publish:
# needs: pyinstaller