summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authornavanchauhan <navanchauhan@gmail.com>2023-05-15 21:42:30 -0600
committernavanchauhan <navanchauhan@gmail.com>2023-05-15 21:42:30 -0600
commit06736ee92a5664a61057529de9a5977bdf204897 (patch)
treedc82766da3893122e486b1d1746129f0cd64d048 /.github/workflows
parent3ff675223d8a1d4a470f0b01799ef6a48c37586a (diff)
remove poetry
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml16
1 files changed, 6 insertions, 10 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ad9c715..0abff89 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -16,7 +16,7 @@ jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
- runs-on: ubuntu-latest
+ runs-on: windows-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
@@ -27,13 +27,9 @@ jobs:
python-version: "3.9"
- name: Package for Windows
run: |
- pip install pandas xlrd openpyxl Pillow matplotlib
- - name: Package Application
- uses: JackMcKew/pyinstaller-action-windows@main
+ pip install pyinstaller pandas xlrd openpyxl Pillow matplotlib
+ pyinstaller --add-data "assets;assets" --onefile -c --noconfirm main.py
+ - uses: actions/upload-artifact@v3
with:
- path: .
-
- - uses: actions/upload-artifact@v2
- with:
- name: my-app
- path: dist/windows
+ name: pyramid-scheme
+ path: dist/