Skip to content

Commit

Permalink
windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
dickreuter committed Dec 3, 2023
1 parent e49c8c3 commit 1e7a24c
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/ISSUE_TEMPLATE/workflows/windows-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Windows Build

on:
push:
branches:
- master

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11.5'

- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run PyInstaller
run: |
cd poker
pyinstaller main.spec
# Add other necessary steps here
- name: Install NSIS
run: |
choco install nsis
- name: Run NSIS
run: makensis -V3 DeepMindPokerbot.nsi

- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: compiled-app
path: path/to/your/compiled/app
10 changes: 10 additions & 0 deletions website/src/views/Purchase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ function PaymentCards() {
<li>Track payoff</li>
<br />
<li>Trial strategies</li>
<br />
<li>Get free trial for betfair-bot.com </li>

</ul>
</div>
Expand Down Expand Up @@ -70,6 +72,8 @@ function PaymentCards() {
<li>Access to all strategies</li>
<li>Edit strategies</li>
<li>Create custom strategies</li>
<br />
<li>Get free licence for betfair-bot.com </li>
</ul>
</div>
</div>
Expand Down Expand Up @@ -99,6 +103,8 @@ function PaymentCards() {
<li>Access to all strategies</li>
<li>Edit strategies</li>
<li>Create custom strategies</li>
<br />
<li>Get free licence for betfair-bot.com </li>
</ul>
</div>
</div>
Expand Down Expand Up @@ -142,6 +148,8 @@ function PaymentCards() {
<li>Access to all strategies</li>
<li>Edit strategies</li>
<li>Create custom strategies</li>
<br />
<li>Get free licence for betfair-bot.com </li>
</ul>
</div>
</div>
Expand Down Expand Up @@ -170,6 +178,8 @@ function PaymentCards() {
<li>Access to all strategies</li>
<li>Edit strategies</li>
<li>Create custom strategies</li>
<br />
<li>Get free licence for betfair-bot.com </li>
</ul>
</div>
</div>
Expand Down

0 comments on commit 1e7a24c

Please sign in to comment.