Skip to content

Commit e809986

Browse files
Fix catalogd-tilt CI workflow
- Fix the paths to use it from catalogd - Fix the directory path
1 parent f565242 commit e809986

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

.github/workflows/catalogd-tilt.yaml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1+
name: catalogd-tilt
2+
13
on:
24
pull_request:
35
paths:
4-
- '.bingo/**'
5-
- '.github/workflows/tilt.yaml'
6-
- 'api/**'
7-
- 'cmd/**'
8-
- 'config/**'
9-
- 'internal/**'
10-
- 'pkg/**'
11-
- 'Tiltfile'
6+
- 'catalogd/.bingo/**'
7+
- 'catalogd/.github/workflows/catalogd-tilt.yaml'
8+
- 'catalogd/api/**'
9+
- 'catalogd/cmd/**'
10+
- 'catalogd/config/**'
11+
- 'catalogd/internal/**'
12+
- 'catalogd/pkg/**'
13+
- 'catalogd/Tiltfile'
1214
merge_group:
1315

1416
jobs:
@@ -17,15 +19,14 @@ jobs:
1719
steps:
1820
- uses: actions/checkout@v4
1921
with:
20-
repository: operator-framework/tilt-support
21-
path: tilt-support
22-
- uses: actions/checkout@v4
23-
with:
24-
path: catalogd
22+
fetch-depth: 0
23+
- name: Clone tilt-support
24+
run: |
25+
git clone https://github.com/operator-framework/tilt-support catalogd/../tilt-support
2526
- name: Install Go
2627
uses: actions/setup-go@v5
2728
with:
28-
go-version-file: "catalogd/go.mod"
29+
go-version-file: catalogd/go.mod
2930
- name: Install Tilt
3031
run: |
3132
TILT_VERSION="0.33.3"

0 commit comments

Comments
 (0)