Skip to content

Commit

Permalink
fix(ci): lock python version in release build
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf committed Nov 7, 2023
1 parent 05a82a5 commit b5ef701
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build-desktop-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,11 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}

- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -434,6 +439,11 @@ jobs:
restore-keys: |
${{ runner.os }}-arm64-yarn-
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Signing By Apple Developer ID
if: ${{ github.repository == 'logseq/logseq' }}
uses: apple-actions/import-codesign-certs@v1
Expand Down

0 comments on commit b5ef701

Please sign in to comment.