Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down