Skip to content

Commit

Permalink
Adding a venv
Browse files Browse the repository at this point in the history
  • Loading branch information
cfcurtis committed Jun 4, 2024
1 parent 9e92f38 commit c527bc5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,22 @@ jobs:
uses: actions/checkout@v4

- name: Install Python
run: brew install [email protected]
run: |
brew install [email protected]
python3 -m venv venv
source venv/bin/activate
- name: Compile translation files and build .app
run: |
source venv/bin/activate
brew install qpdf
pip3 install ".[gui]"
python3 pdfstitcher/update_loc.py --compile
echo "VERSION_STRING=v$(grep 'version' pyproject.toml | awk '{print $3}' | sed 's/\"//g')" >> $GITHUB_ENV
- name: Build with Nuitka
run: |
source venv/bin/activate
pip3 install nuitka
python3 -m nuitka \
--assume-yes-for-downloads \
Expand Down

0 comments on commit c527bc5

Please sign in to comment.