Skip to content

Commit

Permalink
Update develop.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaloney111 authored May 13, 2024
1 parent f4209cc commit b006e68
Showing 1 changed file with 32 additions and 4 deletions.
36 changes: 32 additions & 4 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,47 @@ jobs:
with:
activate-environment: default
environment-file: api/environment.yml

- name: Set up Wine
uses: actions/setup-node@v2
with:
node-version: "14"

- name: Install Wine64
run: sudo apt update && sudo apt install wine64

- name: Install Wine32
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install wine32
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: ⎔ Setup Node
uses: actions/setup-node@v3
with:
cache: "npm"

- name: 🏗️ Build
- name: 🟨 Setup Python
uses: actions/setup-python@v3

- name: 📦 Install dependencies
run: npm install

- name: 🏗️ Create python exe
run: |
pip install pyinstaller
pyinstaller api/app.py
npm install
- name: 📦 Electron Builder
run: npm run electron:package:win
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Get latest release number
id: get_latest_release
uses: actions/github-script@v4
Expand Down

0 comments on commit b006e68

Please sign in to comment.