Skip to content

Commit c1225b5

Browse files
committed
chore: misc changes
1 parent 51514d4 commit c1225b5

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
- main
1818

1919
schedule:
20-
- cron: "0 0 * * 0" # Every week on Sunday at 00:00
20+
- cron: "0 0 * * 0"
2121

2222
workflow_dispatch:
2323

@@ -49,11 +49,9 @@ jobs:
4949
fail-fast: true
5050
max-parallel: 3
5151
matrix:
52-
os: [ ubuntu-latest, macos-latest ]
52+
os: [ ubuntu-latest ]
5353
jdk: [ ea ]
5454
include:
55-
- os: macos-latest
56-
native_task: :macosArm64Test
5755
- os: ubuntu-latest
5856
native_task: :linuxX64Test
5957

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The next version will be based on the semantic version scope (`major`, `minor`,
9898
openjdk:26-slim /bin/bash -c "printenv && backend/jvm/build/libs/jvm"
9999

100100
# Build a container image and run
101-
$ ./gradlew :backend:jvm:jibDockerBuild --no-configuration-cache
101+
$ ./gradlew :backend:jvm:jibDockerBuild
102102
$ docker run -it --rm --name jvm -p 8080:8080 -p 9898:9898 sureshg/jvm
103103
$ docker stats
104104
```
@@ -192,6 +192,7 @@ The next version will be based on the semantic version scope (`major`, `minor`,
192192
$ ./gradlew :web:jsBrowserProductionRun -t
193193
$ ./gradlew :web:wasmJsBrowserProductionRun -t
194194
$ ./gradlew kotlinUpgradePackageLock
195+
$ ./gradlew kotlinWasmUpgradePackageLock
195196

196197
# Kobweb
197198
$ kobweb run -p compose/web
@@ -211,7 +212,7 @@ The next version will be based on the semantic version scope (`major`, `minor`,
211212
$ ./gradlew :backend:native:macOsUniversalBinary
212213

213214
# Native container image
214-
$ ./gradlew :backend:native:jibDockerBuild --no-configuration-cache
215+
$ ./gradlew :backend:native:jibDockerBuild
215216
$ docker run -it --rm --name native sureshg/native
216217

217218
# Debug distroless image
@@ -288,6 +289,9 @@ The next version will be based on the semantic version scope (`major`, `minor`,
288289
# For aggregated publication (preferred) to Central
289290
$ ./gradlew publishAggregationToCentralPortal
290291

292+
# For publishing snapshots
293+
$ ./gradlew publishAggregationToCentralPortalSnapshots
294+
291295
# For all publications (separate publications)
292296
$ ./gradlew publishAllPublicationsToCentralPortal
293297
```

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88

99
description = "Kotlin Multiplatform Playground!"
1010

11-
nmcp {
11+
nmcpAggregation {
1212
centralPortal {
1313
username = mavenCentralUsername
1414
password = mavenCentralPassword

0 commit comments

Comments
 (0)