Skip to content

Commit

Permalink
Test linux place
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaloney111 committed Jun 17, 2024
1 parent 8b27f72 commit 16f6faa
Showing 1 changed file with 18 additions and 20 deletions.
38 changes: 18 additions & 20 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,24 @@ jobs:
commit-message: 'CI: bumps version to {{version}} [skip ci]'
skip-tag: 'true'

build:
name: 🏗️ Build
build-linux:
name: 🏗️ Build Linux
runs-on: ubuntu-latest
needs: version-bump
steps:
- name: Install dependencies
run: npm install

- name: 📦 Electron Builder Linux
run: npm run electron:package:linux
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- run: tree


build-windows:
name: 🏗️ Build Windows
runs-on: windows-latest
needs: version-bump
strategy:
Expand All @@ -46,17 +62,6 @@ jobs:
with:
cache: "npm"

- name: Install dependencies
run: npm install

- name: 📦 Electron Builder Linux
run: npm run electron:package:linux
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- run: tree


- name: Set up conda
uses: conda-incubator/setup-miniconda@v2
with:
Expand All @@ -77,13 +82,6 @@ jobs:
- name: Install dependencies
run: npm install

- name: 📦 Electron Builder Linux
run: npm run electron:package:linux
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- run: tree

- name: 📦 Electron Builder Windows
run: npm run electron:package:win
env:
Expand Down

0 comments on commit 16f6faa

Please sign in to comment.