Skip to content

Commit

Permalink
release/4.1.0 - Build fix (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
kailash-b authored Jan 14, 2025
2 parents 27de053 + bd249ac commit abc1f97
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/actions/nuget-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ runs:

- name: Setup NuGet
uses: nuget/setup-nuget@v1


- name: Setup Mono
run: |
sudo apt-get update
sudo apt-get install -y mono-complete
- name: Create NuGet packages
shell: pwsh
run: nuget pack ${{ inputs.nuspec-file }} -OutputDirectory ${{ inputs.nuget-directory }}
Expand Down
16 changes: 12 additions & 4 deletions .github/workflows/rl-secure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,29 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.404'


- name: Setup Mono
run: |
sudo apt-get update
sudo apt-get install -y mono-complete
- name: Setup NuGet
uses: nuget/setup-nuget@v1

- uses: actions/download-artifact@v4
with:
path: './src'
name: build

- name: Create NuGet packages
shell: pwsh
run: |
run: |
nuget pack ${{ inputs.nuspec-file }} -OutputDirectory ${{ github.workspace }}/nuget
- name: Create tgz build artifact
run: |
tar -czvf ${{ github.workspace }}/${{ inputs.artifact-name }} ${{ github.workspace }}/nuget
- id: get_version
uses: ./.github/actions/get-version
with:
Expand Down

0 comments on commit abc1f97

Please sign in to comment.