You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,14 @@
1
1
name: 'build'
2
2
3
-
# on:
4
-
# push:
5
-
# branches:
6
-
# - release
3
+
# You can also just use this file to build your tauri app via github action
4
+
# Just remove the `working-directory` line below and put it in your root folder
5
+
7
6
on: workflow_dispatch
8
7
9
8
# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release.
10
9
11
10
jobs:
12
-
publish-tauri:
11
+
build-tauri:
13
12
permissions:
14
13
contents: write
15
14
strategy:
@@ -49,7 +48,10 @@ jobs:
49
48
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
50
49
51
50
- name: install frontend dependencies
51
+
### !!!! ----------
52
+
# Remove this here, if you want to build a local tauri app
52
53
working-directory: ./examples/plain-javascript
54
+
### !!!! ----------
53
55
run: yarn install # change this to npm, pnpm or bun depending on which one you use.
0 commit comments