Skip to content

Commit 7b41e8e

Browse files
committed
Artifacts can't have colon in name
1 parent 818f73f commit 7b41e8e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_build_image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Upload docker image file as artifact
3737
uses: actions/upload-artifact@v4
3838
with:
39-
name: ${{ env.IMAGE_NAME }}
39+
name: ${{ env.IMAGE_FILENAME }}
4040
path: ${{ env.IMAGE_FILENAME }}
4141
if-no-files-found: error
4242
retention-days: 3

.github/workflows/build_runtime_images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Upload docker image file as artifact
6767
uses: actions/upload-artifact@v4
6868
with:
69-
name: ${{ env.IMAGE_NAME }}
69+
name: ${{ env.IMAGE_FILENAME }}
7070
path: ${{ env.IMAGE_FILENAME }}
7171
if-no-files-found: error
7272
retention-days: 3

0 commit comments

Comments
 (0)