From 8382000c766cbd0acbaa7f8bc3f4d058f2306e19 Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Mon, 11 Nov 2024 06:01:57 -0800 Subject: [PATCH] fix rename job --- .gitea/workflows/rename_project.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/rename_project.yml b/.gitea/workflows/rename_project.yml index ad7e3db..54bb3c9 100644 --- a/.gitea/workflows/rename_project.yml +++ b/.gitea/workflows/rename_project.yml @@ -16,13 +16,13 @@ jobs: fetch-depth: 0 ref: ${{ gitea.head_ref }} - - run: echo "REPOSITORY_NAME=$(echo '${{ GITHUB_REPOSITORY }}' | awk -F '/' '{print $2}' | tr '-' '_' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV + - run: echo "REPOSITORY_NAME=$(echo '${{ vars.GITHUB_REPOSITORY }}' | awk -F '/' '{print $2}' | tr '-' '_' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV shell: bash - - run: echo "REPOSITORY_URLNAME=$(echo '${{ GITHUB_REPOSITORY }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV + - run: echo "REPOSITORY_URLNAME=$(echo '${{ vars.GITHUB_REPOSITORY }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV shell: bash - - run: echo "REPOSITORY_OWNER=$(echo '${{ GITHUB_REPOSITORY }}' | awk -F '/' '{print $1}')" >> $GITHUB_ENV + - run: echo "REPOSITORY_OWNER=$(echo '${{ vars.GITHUB_REPOSITORY }}' | awk -F '/' '{print $1}')" >> $GITHUB_ENV shell: bash - name: Is this still a template