Skip to content

Commit 9eb8ac7

Browse files
committed
Exclude kotlinStoreYarnLock task from publication check
1 parent f4609a4 commit 9eb8ac7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,11 @@ jobs:
108108
uses: gradle/gradle-build-action@v2
109109
with:
110110
cache-read-only: true
111+
# Exclude kotlinStoreYarnLock because publication check project has different from the main project
112+
# dependencies, and the task fails the build. Ignoring it looks fine.
111113
arguments: |
112114
:tools:check-publication:build
115+
--exclude-task kotlinStoreYarnLock
113116
-Ptarget=all_linux_hosted
114117
-Pcheck_publication
115118
-Psonatype.username=${{ secrets.SONATYPE_USERNAME }}
@@ -136,8 +139,11 @@ jobs:
136139
uses: gradle/gradle-build-action@v2
137140
with:
138141
cache-read-only: true
142+
# Exclude kotlinStoreYarnLock because publication check project has different from the main project
143+
# dependencies, and the task fails the build. Ignoring it looks fine.
139144
arguments: |
140145
:tools:check-publication:build
146+
--exclude-task kotlinStoreYarnLock
141147
-Ptarget=all_macos_hosted
142148
-Pcheck_publication
143149
-Psonatype.username=${{ secrets.SONATYPE_USERNAME }}

0 commit comments

Comments
 (0)