diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index f1b167f..150f11c 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -11,9 +11,7 @@ jobs: runs-on: ubuntu-latest container: mcr.microsoft.com/dotnet/sdk:10.0 steps: - - name: Checkout - uses: actions/checkout@v4 - + # No checkout needed — Forgejo Actions auto-clones the repo - name: Restore dependencies run: dotnet restore @@ -29,9 +27,6 @@ jobs: runs-on: ubuntu-latest container: mcr.microsoft.com/dotnet/sdk:10.0 steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Publish Blazor WASM run: dotnet publish -c Release -o /tmp/publish diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..10e44ad --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# .NET build artifacts +bin/ +obj/ +*.user +*.suo +*.cache +.vs/ +.idea/ + +# OS files +.DS_Store +Thumbs.db diff --git a/StellarisIdle.Tests/StellarisIdle.Tests.csproj b/StellarisIdle.Tests/StellarisIdle.Tests.csproj index 49c01ac..a9cffd7 100644 --- a/StellarisIdle.Tests/StellarisIdle.Tests.csproj +++ b/StellarisIdle.Tests/StellarisIdle.Tests.csproj @@ -19,7 +19,7 @@ - + \ No newline at end of file