Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
buenaflor committed Aug 8, 2024
1 parent 91f73b8 commit eccf1e8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/upload-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: DistZip plugin
run: |
cd sentry-kotlin-multiplatform-gradle-plugin
./gradlew distZip && ./gradlew sentryPluginMarkerDistZip
./gradlew distZip sentryPluginMarkerDistZip
- name: Archive packages
uses: actions/upload-artifact@v4
Expand Down
8 changes: 8 additions & 0 deletions sentry-kotlin-multiplatform-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ distributions {
}
}

tasks.named("sentryPluginMarkerDistTar") {
mustRunAfter("generatePomFileForSentryPluginPluginMarkerMavenPublication")
}

tasks.named("sentryPluginMarkerDistZip") {
mustRunAfter(":generatePomFileForSentryPluginPluginMarkerMavenPublication")
}

buildConfig {
useKotlinOutput()
packageName("io.sentry")
Expand Down

0 comments on commit eccf1e8

Please sign in to comment.