File tree 2 files changed +18
-5
lines changed
2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 22
22
23
23
- name : Setup NuGet
24
24
uses : nuget/setup-nuget@v1
25
-
25
+
26
+ - name : Setup Mono
27
+ run : |
28
+ sudo apt-get update
29
+ sudo apt-get install -y mono-complete
30
+
26
31
- name : Create NuGet packages
27
32
shell : pwsh
28
33
run : nuget pack ${{ inputs.nuspec-file }} -OutputDirectory ${{ inputs.nuget-directory }}
Original file line number Diff line number Diff line change @@ -45,21 +45,29 @@ jobs:
45
45
uses : actions/setup-dotnet@v3
46
46
with :
47
47
dotnet-version : ' 8.0.404'
48
-
48
+
49
+ - name : Setup Mono
50
+ run : |
51
+ sudo apt-get update
52
+ sudo apt-get install -y mono-complete
53
+
54
+ - name : Setup NuGet
55
+ uses : nuget/setup-nuget@v1
56
+
49
57
- uses : actions/download-artifact@v4
50
58
with :
51
59
path : ' ./src'
52
60
name : build
53
61
54
62
- name : Create NuGet packages
55
63
shell : pwsh
56
- run : |
64
+ run : |
57
65
nuget pack ${{ inputs.nuspec-file }} -OutputDirectory ${{ github.workspace }}/nuget
58
-
66
+
59
67
- name : Create tgz build artifact
60
68
run : |
61
69
tar -czvf ${{ github.workspace }}/${{ inputs.artifact-name }} ${{ github.workspace }}/nuget
62
-
70
+
63
71
- id : get_version
64
72
uses : ./.github/actions/get-version
65
73
with :
You can’t perform that action at this time.
0 commit comments