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

Build system: need to push symbol packages to NuGet #63

Open
Aaronontheweb opened this issue Jan 7, 2022 · 1 comment
Open

Build system: need to push symbol packages to NuGet #63

Aaronontheweb opened this issue Jan 7, 2022 · 1 comment
Labels
build-system CI/CD support good first issue Good for newcomers releases NuGet releases of AkkatectureAS

Comments

@Aaronontheweb
Copy link
Contributor

Right now I don't think our current dotnet push command uploads the .snupkg files that contain debugging symbols for Akkatecture. These are needed in order to ensure that SourceLink et al all work properly.

Relevant area of build system:

- name: Build Packages
run: |
dotnet restore
dotnet build -c Release
dotnet pack -c Release --no-build /p:Version=${env:VERSION} --output ./bin/nuget
- name: Push Packages
working-directory: ./bin/nuget
run: dotnet nuget push "*.nupkg" -k "${{secrets.NUGET_API_KEY}}" -s https://api.nuget.org/v3/index.json --skip-duplicate

@Aaronontheweb Aaronontheweb added good first issue Good for newcomers build-system CI/CD support releases NuGet releases of AkkatectureAS labels Jan 7, 2022
@Aaronontheweb
Copy link
Contributor Author

Might also need to delete this

<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>

I don't think that's necessary if a separate symbol package is being published.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build-system CI/CD support good first issue Good for newcomers releases NuGet releases of AkkatectureAS
Projects
None yet
Development

No branches or pull requests

1 participant