summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authornavanchauhan <navanchauhan@gmail.com>2023-05-15 21:39:20 -0600
committernavanchauhan <navanchauhan@gmail.com>2023-05-15 21:39:20 -0600
commit3ff675223d8a1d4a470f0b01799ef6a48c37586a (patch)
treeccbf973f907bed6154e825b75120c77f34aa5637 /.github
parenta94dce1f45166d23d014cc94dde24f6bce6b7ce4 (diff)
remove poetry
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml16
1 files changed, 10 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6570923..ad9c715 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: windows-latest
+ runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
@@ -27,9 +27,13 @@ jobs:
python-version: "3.9"
- name: Package for Windows
run: |
- pip install pyinstaller pandas xlrd openpyxl Pillow matplotlib
- python -m pyinstaller --add-data "assets;assets" -w main.py
- - uses: actions/upload-artifact@v3
+ pip install pandas xlrd openpyxl Pillow matplotlib
+ - name: Package Application
+ uses: JackMcKew/pyinstaller-action-windows@main
with:
- name: pyramid-scheme
- path: dist/
+ path: .
+
+ - uses: actions/upload-artifact@v2
+ with:
+ name: my-app
+ path: dist/windows