Skip to content

Commit bd249ac

Browse files
committed
release/4.1.0 - Build fix
1 parent 9d8a3bb commit bd249ac

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

.github/actions/nuget-publish/action.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ runs:
2222

2323
- name: Setup NuGet
2424
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+
2631
- name: Create NuGet packages
2732
shell: pwsh
2833
run: nuget pack ${{ inputs.nuspec-file }} -OutputDirectory ${{ inputs.nuget-directory }}

.github/workflows/rl-secure.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -45,21 +45,29 @@ jobs:
4545
uses: actions/setup-dotnet@v3
4646
with:
4747
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+
4957
- uses: actions/download-artifact@v4
5058
with:
5159
path: './src'
5260
name: build
5361

5462
- name: Create NuGet packages
5563
shell: pwsh
56-
run: |
64+
run: |
5765
nuget pack ${{ inputs.nuspec-file }} -OutputDirectory ${{ github.workspace }}/nuget
58-
66+
5967
- name: Create tgz build artifact
6068
run: |
6169
tar -czvf ${{ github.workspace }}/${{ inputs.artifact-name }} ${{ github.workspace }}/nuget
62-
70+
6371
- id: get_version
6472
uses: ./.github/actions/get-version
6573
with:

0 commit comments

Comments
 (0)