We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0e7c5ff + f358da8 commit 255583cCopy full SHA for 255583c
.github/workflows/ci.yml
@@ -4,6 +4,7 @@ on:
4
workflow_dispatch:
5
push:
6
branches: ["main"]
7
+ tags: ["*"]
8
pull_request:
9
10
schedule:
@@ -42,6 +43,7 @@ jobs:
42
43
if: |
44
github.event_name == 'workflow_dispatch' ||
45
github.event_name == 'schedule' ||
46
+ startsWith(github.ref, 'refs/tags/') ||
47
needs.detect-changes.outputs.moveit2-changed == 'true'
48
uses: ./.github/workflows/moveit2-build.yml
49
secrets: inherit
@@ -52,6 +54,7 @@ jobs:
52
54
53
55
56
57
58
needs.detect-changes.outputs.nav2-changed == 'true'
59
uses: ./.github/workflows/nav2-build.yml
60
0 commit comments