Skip to content

Commit c8d3245

Browse files
fix: Update workflow triggers to only run on tag pushes
1 parent 4478534 commit c8d3245

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@ name: "Tauri Build"
33

44
# Controls when the action will run.
55
on:
6-
# Triggers the workflow on push or pull request events but only for the main branch
6+
# Triggers the workflow on tag push only
77
push:
8-
branches:
9-
- main
10-
pull_request:
11-
branches:
12-
- main
8+
tags:
9+
- 'v*'
1310

1411
# Allows you to run this workflow manually from the Actions tab
1512
workflow_dispatch:

0 commit comments

Comments
 (0)