Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.

Commit 9b5f3fc

Browse files
author
Vianpyro
committed
Add step to normalize repository owner in Docker image packaging workflow
1 parent acbd77e commit 9b5f3fc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/package-docker-image.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ jobs:
5858
VERSION=$(date +%y.%m.%d.%H.%M)
5959
echo "tag=$VERSION" >> "$GITHUB_OUTPUT"
6060
61+
- name: Normalize repository owner
62+
if: steps.check_changes.outputs.should_build == 'true'
63+
id: repo_owner
64+
run: echo "name=$(echo '${{ github.repository_owner }}' | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_OUTPUT"
65+
6166
- name: Validate Dockerfile exists
6267
if: steps.check_changes.outputs.should_build == 'true'
6368
run: |

0 commit comments

Comments
 (0)