Skip to content

Commit c8090d6

Browse files
committed
Fix tagged release packaging
1 parent 17529fe commit c8090d6

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
@@ -36,13 +36,13 @@ jobs:
3636
run: npm run check
3737
- name: Build macOS Apple Silicon
3838
if: runner.os == 'macOS'
39-
run: npm run dist -- --mac --arm64
39+
run: npm run dist -- --mac --arm64 --publish never
4040
- name: Build macOS Intel
4141
if: runner.os == 'macOS'
42-
run: npm run dist -- --mac --x64
42+
run: npm run dist -- --mac --x64 --publish never
4343
- name: Build Windows x64
4444
if: runner.os == 'Windows'
45-
run: npm run dist -- --win --x64
45+
run: npm run dist -- --win --x64 --publish never
4646
- name: Upload packages
4747
uses: actions/upload-artifact@v7
4848
with:

0 commit comments

Comments
 (0)