From 136d7c730e2dd6486764c9e4d192de7be2f058df Mon Sep 17 00:00:00 2001 From: Jag Date: Sat, 3 Feb 2024 18:37:29 -0800 Subject: [PATCH] chore: split working, more testing --- .github/workflows/release.yml | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 322b196..578da8c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,25 +19,24 @@ jobs: msg: ${{ github.ref_name }} separator: '/' - - name: Test split - run: | - echo ${{ steps.split.outputs._0 }} - echo ${{ steps.split.outputs._1 }} + # - name: Test split + # run: | + # echo ${{ steps.split.outputs._0 }} + # echo ${{ steps.split.outputs._1 }} + - name: Checkout source code + uses: actions/checkout@v4.1.1 + with: + fetch-depth: 0 + ref: ${{ github.events.repository.default_branch }} - # - name: Checkout source code - # uses: actions/checkout@v4.1.1 - # with: - # fetch-depth: 0 - # ref: ${{ github.events.repository.default_branch }} - - # - name: Setup dotnet 6.0.x - # uses: actions/setup-dotnet@v4.0.0 - # with: - # dotnet-version: '6.0.x' + - name: Setup dotnet 6.0.x + uses: actions/setup-dotnet@v4.0.0 + with: + dotnet-version: '6.0.x' - # - name: Install dependencies - # run: dotnet restore ${{ github.ref_name }} + - name: Install dependencies + run: dotnet restore ${{ steps.split.outputs._0 }} - # - name: Build - # run: dotnet build ${{ github.ref_name }} --configuration Release + - name: Build + run: dotnet build ${{ steps.split.outputs._0 }} --configuration Release