Skip to content

Commit

Permalink
Merge pull request #467 from brown-ccv/ci-build
Browse files Browse the repository at this point in the history
ci: Fix mac release for v3.4
  • Loading branch information
RobertGemmaJr authored May 7, 2024
2 parents 714995a + bdda989 commit 9cc40a9
Show file tree
Hide file tree
Showing 3 changed files with 722 additions and 571 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ jobs:
- name: 🐍 Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: 3.12

# Install dependencies and set up environment
- name: 🅿️ Install Python tools
run: pip install setuptools
- name: 📥 Install Dependencies
run: npm ci

# Set up the environment
- name: 🔃 Load .env file (.env.${{matrix.setting}})
uses: xom9ikk/dotenv@v2
with:
path: ./env
mode: ${{matrix.setting}}

# Build the app
- name: ⚒ Build
run: npm run build

# Package the app installers
- name: 📦 Package app installer - Windows
if: startsWith(matrix.os, 'windows')
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/workflow-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,21 @@ jobs:
- name: 🐍 Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: 3.12

# Install dependencies and set up environment
- name: 🅿️ Install Python tools
run: pip install setuptools
- name: 📥 Install Dependencies
run: npm ci

# Set up the environment
- name: 🔃 Load .env file (.env.${{github.event.inputs.setting}})
uses: xom9ikk/dotenv@v2
with:
path: ./env
mode: ${{github.event.inputs.setting}}

# Build the app
- name: ⚒ Build
run: npm run build

# Package the app installers
- name: 📦 Package app installer - Windows
if: startsWith(matrix.os, 'windows')
Expand Down
Loading

0 comments on commit 9cc40a9

Please sign in to comment.