fix requirements #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows Build | |
on: | |
push: | |
branches: master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
cache: pip | |
- name: Install Tesseract | |
run: | | |
iwr https://github.com/simonflueckiger/tesserocr-windows_build/releases/download/tesserocr-v2.6.0-tesseract-5.3.1/tesserocr-2.6.0-cp311-cp311-win_amd64.whl -Out tesserocr-2.6.0-cp311-cp311-win_amd64.whl | |
pip install tesserocr-2.6.0-cp311-cp311-win_amd64.whl | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Run PyInstaller | |
run: | | |
cd poker | |
pyinstaller main.spec | |
# Add other necessary steps here | |
- name: Prepare distribution | |
run: | | |
mkdir dist\main\log | |
mkdir dist\main\pics | |
mkdir dist\main\log\screenshots | |
mkdir dist\main\decisionmaker | |
copy poker\icon.ico dist\main | |
copy poker\config_default.ini dist\main\config.ini | |
xcopy poker\vboxapi dist\main\vboxapi\ /E | |
- name: Install NSIS | |
run: | | |
choco install nsis | |
- name: Run NSIS | |
run: makensis -V3 poker\DeepMindPokerbot.nsi | |
- name: Create Tag | |
run: git tag my-app-${{ github.run_number }} | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: DeepermindPokerbot-${{ github.run_number }} | |
release_name: Release ${{ github.run_number }} | |
draft: false | |
prerelease: false | |
- name: Upload Executable to Release | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./DeepMindPokerbot_winstaller.exe | |
asset_name: DeepMindPokerbot_winstaller.exe | |
asset_content_type: application/octet-stream |