Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Feb 11, 2024
1 parent 03d0cad commit 73fe8fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
include:
- os: macos-latest
NAME: macos
NAME: mac
- os: ubuntu-latest
NAME: linux
- os: windows-latest
Expand Down Expand Up @@ -49,11 +49,11 @@ jobs:
- name: Install app dependencies and build it
if: matrix.NAME == 'linux' || matrix.NAME == 'windows'
run: npm ci && npm run build:release
run: npm ci && npm run build

- name: Install app dependencies and build it
if: matrix.NAME == 'mac'
run: npm ci && npm run build:release -- --target universal-apple-darwin
run: npm ci && npm run build -- --target universal-apple-darwin

- name: Remove useless folders
run: |
Expand Down

0 comments on commit 73fe8fc

Please sign in to comment.