Skip to content

Commit 619a35a

Browse files
committed
remove site publishing workflow
1 parent 4397084 commit 619a35a

File tree

3 files changed

+5
-69
lines changed

3 files changed

+5
-69
lines changed

.github/workflows/run_publish_site.yml

-52
This file was deleted.

.github/workflows/workflow_release.yml

-14
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,3 @@ jobs:
3838
checks: write
3939
with:
4040
checkout-ref: ${{ inputs.checkout-ref || github.event.repository.default_branch }}
41-
42-
publish-site:
43-
needs: tests
44-
# only publish site when releasing
45-
if: github.ref == 'refs/heads/main' && github.event_name == 'release' && github.event.action == 'created'
46-
uses: ./.github/workflows/run_publish_site.yml
47-
permissions:
48-
contents: read
49-
packages: write
50-
checks: write
51-
pages: write
52-
id-token: write
53-
with:
54-
checkout-ref: ${{ inputs.checkout-ref || github.event.repository.default_branch }}

modules/bcv-gradle-plugin/src/main/kotlin/BCVProjectPlugin.kt

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ import dev.adamko.kotlin.binary_compatibility_validator.BCVPlugin.Companion.API_
77
import dev.adamko.kotlin.binary_compatibility_validator.BCVPlugin.Companion.EXTENSION_NAME
88
import dev.adamko.kotlin.binary_compatibility_validator.BCVPlugin.Companion.RUNTIME_CLASSPATH_CONFIGURATION_NAME
99
import dev.adamko.kotlin.binary_compatibility_validator.BCVPlugin.Companion.RUNTIME_CLASSPATH_RESOLVER_CONFIGURATION_NAME
10-
import dev.adamko.kotlin.binary_compatibility_validator.internal.*
11-
import dev.adamko.kotlin.binary_compatibility_validator.internal.Dynamic.Companion.Dynamic
10+
import dev.adamko.kotlin.binary_compatibility_validator.internal.BCVInternalApi
11+
import dev.adamko.kotlin.binary_compatibility_validator.internal.declarable
12+
import dev.adamko.kotlin.binary_compatibility_validator.internal.resolvable
13+
import dev.adamko.kotlin.binary_compatibility_validator.internal.sourceSets
1214
import dev.adamko.kotlin.binary_compatibility_validator.tasks.BCVApiCheckTask
1315
import dev.adamko.kotlin.binary_compatibility_validator.tasks.BCVApiDumpTask
1416
import dev.adamko.kotlin.binary_compatibility_validator.tasks.BCVApiGenerateTask
@@ -201,7 +203,7 @@ constructor(
201203
}
202204
}
203205
}
204-
}
206+
}
205207
}
206208

207209
private fun createJavaTestFixtureTargets(

0 commit comments

Comments
 (0)