-
Notifications
You must be signed in to change notification settings - Fork 773
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
[repo] CI tweaks and improvements #5651
Changes from 6 commits
7f51e55
6557c28
940093d
e99259c
a26a533
e414fc7
8082bd8
7187d1d
854d059
7ad7c25
4ff635b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,8 +39,8 @@ jobs: | |
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v4 | ||
|
||
- name: dotnet pack OpenTelemetry.proj | ||
run: dotnet pack OpenTelemetry.proj --configuration Release | ||
- name: dotnet pack | ||
run: dotnet pack ./build/OpenTelemetry.proj --configuration Release | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would this file move affect existing docs? e.g. https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/CONTRIBUTING.md#pull-requests There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think so. I searched the repo for all occurrences of |
||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there still a concept called "core libraries" after instrumentation libs moved away?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's two tags:
<MinVerTagPrefix>core-</MinVerTagPrefix>
<MinVerTagPrefix>coreunstable-</MinVerTagPrefix>
But I get your point, we could probably just use
stable-
andunstable-
since everything is now "core" 🤣 Follow-up!