Skip to content

Commit 10de026

Browse files
fix: simplify build commands in release workflow by removing unnecessary workspace flags
1 parent 751af17 commit 10de026

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
echo "APPLE_IDENTITY=Developer ID Application: Andrew Chumchal (2TT36YTB8P)" >> $GITHUB_ENV
6161
6262
- name: Build macOS arm64
63-
run: npm run make -w packages/desktop -- --platform darwin --arch arm64
63+
run: npm run make -- --platform darwin --arch arm64
6464
env:
6565
APPLE_IDENTITY: ${{ env.APPLE_IDENTITY }}
6666
APPLE_ID: ${{ secrets.APPLE_ID }}
@@ -121,7 +121,7 @@ jobs:
121121
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
122122

123123
- name: Build Windows ${{ matrix.arch }}
124-
run: npm run make -w packages/desktop -- --platform win32 --arch ${{ matrix.arch }}
124+
run: npm run make -- --platform win32 --arch ${{ matrix.arch }}
125125
env:
126126
NODE_ENV: production
127127
NODE_OPTIONS: --max-old-space-size=6144
@@ -162,7 +162,7 @@ jobs:
162162
run: sudo apt-get install -y rpm
163163

164164
- name: Build Linux distributable
165-
run: npm run make -w packages/desktop -- --platform linux
165+
run: npm run make -- --platform linux
166166
env:
167167
NODE_ENV: production
168168
NODE_OPTIONS: --max-old-space-size=6144

0 commit comments

Comments
 (0)