We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54229c0 commit d200791Copy full SHA for d200791
.github/workflows/dotnet.yml
@@ -24,3 +24,13 @@ jobs:
24
run: dotnet restore
25
- name: Build
26
run: dotnet build
27
+ - name: Upload a Build Artifact
28
+ uses: actions/upload-artifact@v4.6.1
29
+ with:
30
+ # Artifact name
31
+ name: artifact
32
+ # A file, directory or wildcard pattern that describes what to upload
33
+ path: bin/
34
+ # The desired behavior if no files are found using the provided path.
35
+
36
0 commit comments