Skip to content

Commit 3e6db3d

Browse files
fix: hardcode lowercase repository path in workflow container images
Replace dynamic github.repository variable with hardcoded 'opensecflow/netdriver' to ensure container image names are always lowercase, preventing potential image pull failures due to case sensitivity. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 9acb524 commit 3e6db3d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build-ci-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
REGISTRY: ghcr.io
14-
IMAGE_NAME: ${{ github.repository }}/python-poetry
14+
IMAGE_NAME: opensecflow/netdriver/python-poetry
1515

1616
jobs:
1717
build:

.github/workflows/build-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: Lint and Test
2626
runs-on: ubuntu-latest
2727
container:
28-
image: ghcr.io/${{ github.repository }}/python-poetry
28+
image: ghcr.io/opensecflow/netdriver/python-poetry
2929
permissions:
3030
contents: read
3131
packages: read
@@ -69,7 +69,7 @@ jobs:
6969
needs: test
7070
runs-on: ubuntu-latest
7171
container:
72-
image: ghcr.io/${{ github.repository }}/python-poetry:3.12
72+
image: ghcr.io/opensecflow/netdriver/python-poetry:3.12
7373
permissions:
7474
contents: read
7575
packages: read

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
# Use pre-built container with Python and Poetry installed
2525
container:
26-
image: ghcr.io/${{ github.repository }}/python-poetry
26+
image: ghcr.io/opensecflow/netdriver/python-poetry
2727
environment: ${{ github.event.inputs.environment || 'pypi' }}
2828
permissions:
2929
contents: read

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
name: Run tests
6262
runs-on: ubuntu-latest
6363
container:
64-
image: ghcr.io/${{ github.repository }}/python-poetry:3.12
64+
image: ghcr.io/opensecflow/netdriver/python-poetry:3.12
6565
permissions:
6666
contents: read
6767
packages: read
@@ -94,7 +94,7 @@ jobs:
9494
needs: [create-release, test]
9595
runs-on: ubuntu-latest
9696
container:
97-
image: ghcr.io/${{ github.repository }}/python-poetry:3.12
97+
image: ghcr.io/opensecflow/netdriver/python-poetry:3.12
9898
permissions:
9999
contents: write
100100
packages: read

0 commit comments

Comments
 (0)