Skip to content

Commit a31774d

Browse files
committed
WIP Workflow
1 parent 5e34b2f commit a31774d

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/build_test_deploy.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,11 @@ jobs:
4343
- name: Restore dependencies
4444
run: dotnet restore
4545

46-
- name: Build Test version
47-
run: dotnet build --configuration Release --no-restore
48-
49-
- name: Run Tests
50-
run: dotnet test --configuration Release --no-restore --verbosity normal --collect:"XPlat Code Coverage" --settings Marten.AspNetCore.Identity.Tests/coverlet.runsettings
51-
5246
- name: Build Release version
5347
run: dotnet build --no-restore --configuration Release /p:AssemblyVersion=${{ steps.gitversion.outputs.assemblySemFileVer }} /p:FileVersion=${{ steps.gitversion.outputs.assemblySemFileVer }} /p:InformationalVersion=${{ steps.gitversion.outputs.Sha }}
48+
49+
# - name: Run Tests
50+
# run: dotnet test --configuration Release --no-restore --verbosity normal --collect:"XPlat Code Coverage" --settings Marten.AspNetCore.Identity.Tests/coverlet.runsettings
5451

5552
- name: Pack
5653
run: dotnet pack --no-build --output ./output --configuration Release /p:PackageVersion=${{ steps.gitversion.outputs.nuGetVersionV2 }}
@@ -59,7 +56,7 @@ jobs:
5956
uses: actions/upload-artifact@v2
6057
with:
6158
name: "Marten.AspNetCore.Identity-${{ steps.gitversion.outputs.nuGetVersionV2 }}"
62-
path: ./output/*.nupkg
59+
path: ./output/*.*
6360

6461
- name: Upload Package to release
6562
# if: contains(github.ref, 'main')

0 commit comments

Comments
 (0)