Skip to content

Commit 99cfeec

Browse files
committed
fix: add --publish never to CI builds to prevent auto-publish but generate yml files
1 parent b445fb5 commit 99cfeec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: npm install --force
4646

4747
- name: Build application
48-
run: npm run build:fast
48+
run: npm run build:fast -- --publish never
4949
env:
5050
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5151

@@ -74,7 +74,7 @@ jobs:
7474
run: npm install --force
7575

7676
- name: Build application
77-
run: npm run build:win:fast
77+
run: npm run build:win:fast -- --publish never
7878
env:
7979
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8080

@@ -103,7 +103,7 @@ jobs:
103103
run: npm install --force
104104

105105
- name: Build application
106-
run: npm run build:mac:fast
106+
run: npm run build:mac:fast -- --publish never
107107
env:
108108
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
109109

@@ -132,7 +132,7 @@ jobs:
132132
run: npm install --force
133133

134134
- name: Build application
135-
run: npm run build:mac:fast
135+
run: npm run build:mac:fast -- --publish never
136136
env:
137137
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
138138

0 commit comments

Comments
 (0)