Skip to content

Commit 8f4f408

Browse files
committed
typo fix, add comments
1 parent efa2ac7 commit 8f4f408

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
name: 'build'
22

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+
76
on: workflow_dispatch
87

98
# 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.
109

1110
jobs:
12-
publish-tauri:
11+
build-tauri:
1312
permissions:
1413
contents: write
1514
strategy:
@@ -49,7 +48,10 @@ jobs:
4948
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
5049

5150
- name: install frontend dependencies
51+
### !!!! ----------
52+
# Remove this here, if you want to build a local tauri app
5253
working-directory: ./examples/plain-javascript
54+
### !!!! ----------
5355
run: yarn install # change this to npm, pnpm or bun depending on which one you use.
5456

5557
- uses: tauri-apps/tauri-action@v0

0 commit comments

Comments
 (0)