Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release/4.1.0 - Build fix #340

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading