Skip to content

Commit fc8ac31

Browse files
alicup29claude
andcommitted
fix: correct case sensitivity in workflow paths
Changed sleap_rtc to sleap_RTC in both workflow files to match the actual directory name in the repository. This fixes the build failures on Linux runners where the filesystem is case-sensitive. Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 36fa485 commit fc8ac31

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/worker_production.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches-ignore:
66
- main
77
paths:
8-
- sleap_rtc/worker/**
8+
- sleap_RTC/worker/**
99
- .github/workflows/worker_test.yml
1010

1111
jobs:
@@ -51,8 +51,8 @@ jobs:
5151
- name: Build and push Docker image
5252
uses: docker/build-push-action@v6
5353
with:
54-
context: ./sleap_rtc/worker
55-
file: ./sleap_rtc/worker/Dockerfile
54+
context: ./sleap_RTC/worker
55+
file: ./sleap_RTC/worker/Dockerfile
5656
platforms: linux/amd64
5757
push: true
5858
# Enable GitHub Actions cache for Docker layers

.github/workflows/worker_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches-ignore:
66
- main
77
paths:
8-
- sleap_rtc/worker/**
8+
- sleap_RTC/worker/**
99
- .github/workflows/worker_test.yml
1010

1111
jobs:
@@ -51,8 +51,8 @@ jobs:
5151
- name: Build and push Docker image
5252
uses: docker/build-push-action@v6
5353
with:
54-
context: ./sleap_rtc/worker
55-
file: ./sleap_rtc/worker/Dockerfile
54+
context: ./sleap_RTC/worker
55+
file: ./sleap_RTC/worker/Dockerfile
5656
platforms: linux/amd64
5757
push: true
5858
# Enable GitHub Actions cache for Docker layers

0 commit comments

Comments
 (0)