Skip to content

Commit 01275c8

Browse files
committed
ci: run build on: PR, pushes to main and tags
- Running on PR makes it easier to debug the build process. - Running on main makes it easier to test the code in main. - Running on tags is good for releases. Later we can make the CI publish the vsix as a release when a tag is created.
1 parent 1d76271 commit 01275c8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
name: vsixbuilder
22

33
on:
4+
pull_request:
45
push:
5-
branches: [main]
6+
branches:
7+
- "main"
8+
tags:
9+
- "v*"
610

711
permissions:
812
contents: read

0 commit comments

Comments
 (0)