Skip to content

Commit

Permalink
pipeline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dickreuter committed Dec 30, 2023
1 parent 3dc3f24 commit 1edc40c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@ jobs:
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 icon.ico dist\main
copy config_default.ini dist\main\config.ini
xcopy vboxapi dist\main\vboxapi\ /E
- name: Install NSIS
run: |
choco install nsis
Expand All @@ -45,4 +55,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: compiled-app
path: path/to/your/compiled/app
path: DeepMindPokerbot_winstaller.exe
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ package.bat
*.nsi
pokwerbot_downloader_initia.py
desktop.ini
config_default.ini
pokerbot_downloader_initial.py
config.ini
/poker/tests/test_tensorflow.py
Expand Down
10 changes: 10 additions & 0 deletions poker/config_default.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[main]
terminalmode = 0
setupmode = 0
montecarlo_timeout = 8
last_strategy = Trial 1
control = Direct mouse control
table_scraper_name = Official Poker Stars
login = guest
password = guest
db = http://dickreuter.com:7777/

0 comments on commit 1edc40c

Please sign in to comment.