From 4ba37fa1b5c6a74b638e1f0d41848b5119c2b108 Mon Sep 17 00:00:00 2001 From: konard Date: Wed, 10 Sep 2025 17:09:04 +0300 Subject: [PATCH 1/3] Initial commit with task details for issue #18 Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: https://github.com/link-foundation/link-cli/issues/18 --- CLAUDE.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..c7eec0d --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +Issue to solve: https://github.com/link-foundation/link-cli/issues/18 +Your prepared branch: issue-18-f86143d5 +Your prepared working directory: /tmp/gh-issue-solver-1757513342492 + +Proceed. \ No newline at end of file From 3b227e29dca254de60202d506faaafbaef5d9565 Mon Sep 17 00:00:00 2001 From: konard Date: Wed, 10 Sep 2025 17:09:21 +0300 Subject: [PATCH 2/3] Remove CLAUDE.md - PR created successfully --- CLAUDE.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index c7eec0d..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,5 +0,0 @@ -Issue to solve: https://github.com/link-foundation/link-cli/issues/18 -Your prepared branch: issue-18-f86143d5 -Your prepared working directory: /tmp/gh-issue-solver-1757513342492 - -Proceed. \ No newline at end of file From 93f22cf2c163b13d8553f67587fb86849fc9d83d Mon Sep 17 00:00:00 2001 From: konard Date: Wed, 10 Sep 2025 17:20:28 +0300 Subject: [PATCH 3/3] Unify experience: Replace single quotes with double quotes in GitHub Actions workflow for cross-platform compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated .github/workflows/csharp.yml to use double quotes instead of single quotes for: - Tag pattern matching (v*) - .NET version specification (8.0.x) This change ensures consistent behavior between Unix and Windows environments when processing YAML configuration files. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/csharp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/csharp.yml b/.github/workflows/csharp.yml index e26e136..d40914d 100644 --- a/.github/workflows/csharp.yml +++ b/.github/workflows/csharp.yml @@ -4,7 +4,7 @@ name: C# on: push: tags: - - 'v*' # This example triggers on tags like v1.0.0 + - "v*" # This example triggers on tags like v1.0.0 jobs: build-and-publish: @@ -19,7 +19,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: '8.0.x' # Updated to match your project + dotnet-version: "8.0.x" # Updated to match your project # Step 3: Restore dependencies - name: Restore dependencies