From 3925c92fc33f3d2bc87d28d21ab691b7e6dd6cdf Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Thu, 26 Feb 2026 22:45:18 +0100 Subject: [PATCH] ci: fix int test (#21) Reviewed-on: https://gitea.t000-n.de/t.behrendt/actions/pulls/21 Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- .gitea/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 271b6ad..6568fd2 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -12,5 +12,5 @@ jobs: - id: repo uses: ./get-repo-name - run: | - test "${{ steps.repo.outputs.name }}" = "actions" || (echo "Expected repo name 'actions', got '${{ steps.repo.outputs.name }}'" && exit 1) + test "${{ steps.repo.outputs.name }}" = "actions" || (echo "Expected repo name 'actions', got '${{ steps.repo.outputs.name }}'" && exit 1) - run: echo "Original repository name is ${{ GITEA_REPOSITORY }}"