Skip to content

Commit

Permalink
Merge pull request #17 from jerryliang122/bug-fix
Browse files Browse the repository at this point in the history
v1.5.1
  • Loading branch information
jerryliang122 authored Mar 17, 2023
2 parents 6dff8e8 + 39527fd commit b04c463
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 1,603 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/build-windows-exe.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
name: Build and Upload Windows Executable

on:
push:
branches:
- inquiry
on: push

jobs:
build:
runs-on: windows-latest
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9

- name: Disable Windows Defender
run: |
Set-MpPreference -DisableRealtimeMonitoring $true
- name: Install dependencies
run: |
pip install --upgrade pip
pip install poetry
- name: Install and configure Poetry
uses: abatilo/actions-poetry@v2
with:
python-version: 3.9
poetry-version: 1.3.2

- name: Build Windows Executable
run: |
poetry install
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/build-windows-executable-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,27 @@ on:

jobs:
build:
runs-on: windows-latest
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Disable Windows Defender
run: |
Set-MpPreference -DisableRealtimeMonitoring $true
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9

- name: Install and configure Poetry
uses: abatilo/actions-poetry@v2
with:
python-version: 3.9
poetry-version: 1.3.2
- name: Install dependencies
run: |
pip install --upgrade pip
pip install poetry
choco install zip
Expand Down
Loading

0 comments on commit b04c463

Please sign in to comment.