From 5d71e5fe799076612e2efcb35ea6861f10e2a879 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Mon, 17 Jun 2024 15:55:30 +1000 Subject: [PATCH] feat: Try to add auto container naming --- .gitea/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 489226c..4a9988c 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -35,7 +35,10 @@ jobs: echo "tag=$tag" echo "tag_num=$tag_num" - echo "Git repo name: $GITHUB_REPOSITORY" + repo=$GITHUB_REPOSITORY + # Remove the org name + repo=${repo#*/} + echo "repo=$repo"