Skip to content

Commit

Permalink
Pin to python 3.11 awaiting electron builder update
Browse files Browse the repository at this point in the history
  • Loading branch information
pierr3 committed Apr 24, 2024
1 parent c2159c0 commit 593421f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,17 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install Python 3.x
uses: actions/setup-python@v4
with:
python-version: "3.11.x"

- name: Update cmake
if: matrix.os != 'macos-latest'
run: |
pip install cmake
cmake --version
- name: Setup environment
if: matrix.os == 'macos-latest'
run: |
Expand All @@ -44,12 +49,12 @@ jobs:
- name: Installing codesign certificates
if: matrix.os == 'macos-latest'
uses: apple-actions/import-codesign-certs@v2
with:
with:
p12-file-base64: ${{ secrets.APPLE_CERT_DATA }}
p12-password: ${{ secrets.APPLE_CERT_PASSWORD }}

- name: Install dependencies
run: |
run: |
npm -g i cmake-js
npm run build-backend
npm install
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,17 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install Python 3.x
uses: actions/setup-python@v4
with:
python-version: "3.11.x"

- name: Update cmake
if: matrix.os != 'macos-latest'
run: |
pip install cmake
cmake --version
- name: Setup environment
if: matrix.os == 'macos-latest'
run: |
Expand All @@ -39,12 +44,12 @@ jobs:
- name: Installing codesign certificates
if: matrix.os == 'macos-latest'
uses: apple-actions/import-codesign-certs@v2
with:
with:
p12-file-base64: ${{ secrets.APPLE_CERT_DATA }}
p12-password: ${{ secrets.APPLE_CERT_PASSWORD }}

- name: Install dependencies
run: |
run: |
npm -g i cmake-js
npm run build-backend
npm install
Expand Down

0 comments on commit 593421f

Please sign in to comment.