Skip to content

Commit c5322d3

Browse files
authored
Update main.yml
Made it so it only deploys pushes on the main branch
1 parent 4a8a5b7 commit c5322d3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# This is a basic workflow to help you get started with Actions
22

33
name: Build Vue
4-
on: [push]
4+
on:
5+
push:
6+
branches:
7+
- main
8+
pull_request:
9+
branches:
10+
- main
511
jobs:
612
build_vue:
713
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)