From 40e020fb02c8cd3e67c6649a73eff107ba5aa1ef Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Tue, 19 Aug 2025 17:37:17 +0900 Subject: [PATCH] ci: add dotnet pack and use Release --- .github/workflows/build-debug.yaml | 5 +++-- Directory.Build.props | 2 -- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-debug.yaml b/.github/workflows/build-debug.yaml index 3dd9970..0422c13 100644 --- a/.github/workflows/build-debug.yaml +++ b/.github/workflows/build-debug.yaml @@ -17,8 +17,9 @@ jobs: steps: - uses: Cysharp/Actions/.github/actions/checkout@main - uses: Cysharp/Actions/.github/actions/setup-dotnet@main - - run: dotnet build -c Debug - - run: dotnet test -c Debug + - run: dotnet build -c Release + - run: dotnet test -c Release + - run: dotnet pack -c Release --no-build -p:IncludeSymbols=true -o $GITHUB_WORKSPACE/artifacts build-unity: if: ${{ ((github.event_name == 'push' && github.repository_owner == 'Cysharp') || startsWith(github.event.pull_request.head.label, 'Cysharp:')) && github.triggering_actor != 'dependabot[bot]' }} diff --git a/Directory.Build.props b/Directory.Build.props index fe6aa5b..f4564dd 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,8 +1,6 @@  - 13 - $(Version) Cysharp