Skip to content

Commit e809208

Browse files
committed
ci: use container image from the current repo
Use the container image from the current repository instead of fetching the upstream one. This allows for testing of container interactions with CI locally before submission and without additional modification of workflows. Signed-off-by: Randolph Sapp <rs@ti.com>
1 parent 20d025a commit e809208

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
collect:
1818
runs-on: ubuntu-latest
1919
container:
20-
image: ghcr.io/texasinstruments/processor-sdk-doc:latest
20+
image: ghcr.io/${{ github.repository }}:latest
2121
options: --entrypoint /bin/bash
2222
permissions:
2323
contents: read
@@ -36,7 +36,7 @@ jobs:
3636
name: Build
3737
runs-on: ubuntu-latest
3838
container:
39-
image: ghcr.io/texasinstruments/processor-sdk-doc:latest
39+
image: ghcr.io/${{ github.repository }}:latest
4040
options: --entrypoint /bin/bash
4141
permissions:
4242
contents: read

.github/workflows/check-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Lint
1717
runs-on: ubuntu-latest
1818
container:
19-
image: ghcr.io/texasinstruments/processor-sdk-doc:latest
19+
image: ghcr.io/${{ github.repository }}:latest
2020
options: --entrypoint /bin/bash
2121
permissions:
2222
contents: read

.github/workflows/check_toc_txt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Lint
1818
runs-on: ubuntu-latest
1919
container:
20-
image: ghcr.io/texasinstruments/processor-sdk-doc:latest
20+
image: ghcr.io/${{ github.repository }}:latest
2121
options: --entrypoint /bin/bash
2222
permissions:
2323
contents: read

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1616
container:
17-
image: ghcr.io/texasinstruments/processor-sdk-doc:latest
17+
image: ghcr.io/${{ github.repository }}:latest
1818
options: --entrypoint /bin/bash
1919
permissions:
2020
contents: read

.github/workflows/rstcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Lint
1717
runs-on: ubuntu-latest
1818
container:
19-
image: ghcr.io/texasinstruments/processor-sdk-doc:latest
19+
image: ghcr.io/${{ github.repository }}:latest
2020
options: --entrypoint /bin/bash
2121
permissions:
2222
contents: read

.github/workflows/vale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: vale
1313
runs-on: ubuntu-latest
1414
container:
15-
image: ghcr.io/staticrocket/processor-sdk-doc:latest
15+
image: ghcr.io/${{ github.repository }}:latest
1616
options: --entrypoint /bin/bash
1717
permissions:
1818
contents: read

0 commit comments

Comments
 (0)