We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dffa75e commit db4a33cCopy full SHA for db4a33c
2 files changed
.github/workflows/publish.yml
@@ -9,20 +9,16 @@ jobs:
9
publish:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v4
13
- with:
14
- fetch-depth: 2
+ - name: Checkout
+ uses: actions/checkout@v4
15
16
- name: Setup .NET
17
uses: actions/setup-dotnet@v3
18
with:
19
dotnet-version: 9.0.x
20
21
- - name: Restore
22
- run: dotnet restore
23
-
24
- name: Build
25
- run: dotnet build -c Release --no-restore
+ run: dotnet build -c Release
26
27
- name: Pack
28
run: dotnet pack -c Release -o ./nuget --no-build
.github/workflows/test.yml
@@ -14,7 +14,8 @@ jobs:
os: [ubuntu-latest]
0 commit comments