We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 46beeef + 32c7cda commit 250e48aCopy full SHA for 250e48a
.github/workflows/ci.yml
@@ -1,7 +1,18 @@
1
+name: Continuous Integration
2
+
3
+# runs on
4
+# * pushes and pull requests on the "main" (pull request only for specific paths)
5
+# * manual trigger
6
7
on:
8
push:
- branches:
- - main
9
+ branches: [ "main", "feature/*" ]
10
11
+ pull_request:
12
13
14
+ workflow_dispatch:
15
16
jobs:
17
build:
18
runs-on: ubuntu-latest
.github/workflows/release.yml
@@ -5,7 +5,7 @@ on:
tags:
- "v*.*.*" # Matches stable versions like v1.2.3
- "v*.*.*-*" # Matches pre-release versions like v2.0.1-beta
-
build-and-release:
0 commit comments