We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6971c00 commit 184ab9dCopy full SHA for 184ab9d
.github/workflows/release_build.yml
@@ -1,9 +1,9 @@
1
-name: Release build
+name: Build release packages and documentation
2
on:
3
workflow_dispatch:
4
push:
5
- tags:
6
- - 'v*'
+ # tags:
+ # - 'v*'
7
8
env:
9
CONFIGURATION: Release
@@ -34,11 +34,18 @@ jobs:
34
- name: Build package and docs
35
run: dotnet run --project 'build/build.fsproj' -- -t All
36
37
- - name: Upload artifacts
+ - name: Upload packages
38
uses: actions/upload-artifact@v4
39
with:
40
+ name: packages
41
path: |
42
bin/Release/NSubstitute/*.nupkg
43
bin/Release/NSubstitute/*.snupkg
44
+
45
+ - name: Upload documentation
46
+ uses: actions/upload-artifact@v4
47
+ with:
48
+ name: docs
49
+ path: |
50
bin/Release/nsubstitute.github.com/
51
0 commit comments