Skip to content

Commit

Permalink
fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
danyworks committed Sep 25, 2024
1 parent 68a2b67 commit d175b66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Install pipenv
run: |
pip install --user pipenv
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$HOME/Library/Python/3.10/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
Expand Down
14 changes: 7 additions & 7 deletions main.spec
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ architecture = 'x64' if sys.maxsize > 2**32 else 'x86'
if current_platform.startswith('win'):
exe_name = f'scrapegoat_windows_{architecture}.exe'
build_path = 'D:\\a\\scrapegoat\\scrapegoat\\dist\\'
chrome_portable_path = '.\ungoogled_chromium\ungoogled-chromium_129.0.6668.58-1.1_windows\'
chromedriver_path = './chromedriver/win64/'
chrome_portable_path = '.\\ungoogled_chromium\\ungoogled-chromium_129.0.6668.58-1.1_windows\\'
chromedriver_path = '.\\ungoogled_chromium\\chromedriver\\chromedriver-win64\\'
chromedriver_binary = 'chromedriver.exe'
chrome_binary = 'chrome.exe'
elif current_platform == 'darwin':
exe_name = f'scrapegoat_macos_{architecture}'
build_path = '/Users/runner/work/scrapegoat/scrapegoat/dist/'
chrome_portable_path = './chrome_portable/ungoogled-chromium_128.0.6613.137-1.1_x86-64-macos-signed.app/Contents/MacOS/'
chromedriver_path = './chromedriver/mac-x64/'
chrome_portable_path = './ungoogled_chromium/Chromium.app/Contents/MacOS/'
chromedriver_path = './ungoogled_chromium/'
chromedriver_binary = 'chromedriver'
chrome_binary = 'ungoogled-chromium_128.0.6613.137-1.1_x86-64-macos-signed'
chrome_binary = 'Chromium'
else: # Linux
exe_name = 'scrapegoat_linux'
build_path = '/home/runner/work/scrapegoat/scrapegoat/dist/'
chrome_portable_path = './chrome_portable/ungoogled-chromium_128.0.6613.137-1_linux/'
chromedriver_path = './chromedriver/linux64/'
chrome_portable_path = './ungoogled_chromium/ungoogled-chromium_129.0.6668.58-1_linux/'
chromedriver_path = './ungoogled_chromium/ungoogled-chromium_129.0.6668.58-1_linux/'
chromedriver_binary = 'chromedriver'
chrome_binary = 'chrome'

Expand Down

0 comments on commit d175b66

Please sign in to comment.