try to fix GLIBCXX error due to net8.0 #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release_NUGET_Stable | |
on: | |
push: | |
tags: | |
- "*.*.*" | |
- "!*.*.*-beta*" | |
- "!*.*.*-rc*" | |
jobs: | |
publish_nuget: | |
name: Build and upload nuget artifact | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core 8.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
8.0.x | |
7.0.x | |
6.0.x | |
- name: Build with dotnet | |
run: | | |
dotnet build --configuration Release --source https://api.nuget.org/v3/index.json rdb-tools.sln | |
- name: Pack with dotnet | |
run: | | |
dotnet pack src/RDBParser/RDBParser.csproj -o /home/runner/work/nugetpkgs -c Release --no-build | |
dotnet pack src/RDBCli/RDBCli.csproj -f net8.0 -o /home/runner/work/nugetpkgs -c Release --no-build | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nugetpkgs | |
path: /home/runner/work/nugetpkgs | |
release_nuget: | |
name: Release to Nuget | |
needs: publish_nuget | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download build artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: nugetpkgs | |
path: nugetpkgs | |
- name: list nugetpkgs | |
run: ls nugetpkgs | |
- name: Release | |
run: | | |
for file in nugetpkgs/*.nupkg | |
do | |
dotnet nuget push $file -k ${{ secrets.NUGET_API_KEY }} --skip-duplicate -s https://www.nuget.org/api/v2/package | |
done |