Skip to content

Commit

Permalink
fix: workflow image case (#24)
Browse files Browse the repository at this point in the history
* fix: image requires lowercase while the TEN is not

* chore: ignore non self workflow changes
  • Loading branch information
wangyoucao577 authored Sep 18, 2024
1 parent fa20295 commit 040c4fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_linux_ubuntu1804.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ on:
- "docs/**"
- ".vscode/**"
- ".devcontainer/**"
- ".github/configs/**"
- ".github/**"
- "!.github/workflows/build_linux_ubuntu1804.yml"
- "**.md"
pull_request:

Expand All @@ -24,7 +25,7 @@ jobs:
matrix:
build_type: [release]
container:
image: ghcr.io/${{ github.repository_owner }}/ten_building_ubuntu1804
image: ghcr.io/ten-framework/ten_building_ubuntu1804
steps:
- uses: actions/checkout@v3
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build_linux_ubuntu2204.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ on:
- "docs/**"
- ".vscode/**"
- ".devcontainer/**"
- ".github/configs/**"
- ".github/**"
- "!.github/workflows/build_linux_ubuntu2204.yml"
- "**.md"
pull_request:

Expand All @@ -23,7 +24,7 @@ jobs:
compiler: [gcc, clang]
build_type: [debug, release]
container:
image: ghcr.io/${{ github.repository_owner }}/ten_building_ubuntu2204
image: ghcr.io/ten-framework/ten_building_ubuntu2204
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 040c4fb

Please sign in to comment.