-
-
Notifications
You must be signed in to change notification settings - Fork 19
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
fix: plugin publication #252
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #252 +/- ##
=======================================
Coverage 75.43% 75.43%
=======================================
Files 38 38
Lines 574 574
Branches 85 85
=======================================
Hits 433 433
Misses 96 96
Partials 45 45 ☔ View full report in Codecov by Sentry. |
tasks.named("sentryPluginMarkerDistTar") { | ||
mustRunAfter("generatePomFileForSentryPluginPluginMarkerMavenPublication") | ||
} | ||
|
||
tasks.named("sentryPluginMarkerDistZip") { | ||
mustRunAfter(":generatePomFileForSentryPluginPluginMarkerMavenPublication") | ||
} |
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.
somehow I need this or it gives me a "without declaring an explicit or implicit dependency." error
- name: DistZip libraries | ||
run: | | ||
./gradlew distZip | ||
|
||
- name: DistZip plugin | ||
run: | | ||
cd sentry-kotlin-multiplatform-gradle-plugin | ||
./gradlew distZip sentryPluginMarkerDistZip | ||
|
||
- name: Archive packages | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ github.sha }} | ||
if-no-files-found: error | ||
path: | | ||
./*/build/distributions/*.zip |
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.
merge all the distributions into one single workflow
@romtsn I think after this PR the release will work fine |
previously plugin and library workflows did the uploading of the distributions separately, I don't think this would've worked.
Now the distributions are packaged in one workflow.
Also added a couple things like the pom metadata
#skip-changelog