Skip to content

Commit dc61201

Browse files
committed
changelog
1 parent 1a8613e commit dc61201

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

.github/workflows/deploy-pages.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,8 @@ jobs:
3838
with:
3939
python-version: 3.x
4040
- uses: actions/checkout@v2
41-
- run: pip install mkdocs-material mike
41+
- run: |
42+
pip install mkdocs-material mike
43+
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
44+
git config --local user.name "github-actions[bot]"
4245
- run: ./gradlew :npm-publish-docs:mikeDeploy -Pversion='${{ inputs.version }}'

buildSrc/src/main/kotlin/plugin.publishing.gradle.kts

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ plugins {
66
signing
77
}
88

9-
gradlePlugin {
10-
plugins {
11-
create(name) {
12-
id = "dev.petuska.npm.publish"
13-
displayName = "NPM package publishing to NPM repositories"
14-
description = project.description
15-
implementationClass = "dev.petuska.npm.publish.NpmPublishPlugin"
9+
afterEvaluate {
10+
gradlePlugin {
11+
plugins {
12+
create(name) {
13+
id = "dev.petuska.npm.publish"
14+
displayName = "NPM package publishing to NPM repositories"
15+
description = project.description
16+
implementationClass = "dev.petuska.npm.publish.NpmPublishPlugin"
17+
}
1618
}
1719
}
1820
}

0 commit comments

Comments
 (0)