diff --git a/.github/workflows/gradle-publish.yml b/.github/workflows/gradle-publish.yml index 70b9fe3..8c2f7c6 100755 --- a/.github/workflows/gradle-publish.yml +++ b/.github/workflows/gradle-publish.yml @@ -25,13 +25,11 @@ jobs: - name: Set up Gradle uses: gradle/gradle-build-action@v2 - - name: Execute Gradle build + - name: Build and publish to Vega run: | chmod +x ./gradlew - ./gradlew build --stacktrace --info -x test - - - name: Publish to Vega - run: ./gradlew :plutoengine:publish --stacktrace --info -x test + ./gradlew :plutoengine:publish --stacktrace --info -x test + ./gradlew :plutoengine-ext:publish --stacktrace --info -x test env: ORG_GRADLE_PROJECT_signingKey: ${{ secrets.GPG_PRIVATE_KEY }} ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.GPG_PASSWORD }} diff --git a/UPDATE_NOTES.md b/UPDATE_NOTES.md index eed8c70..80bc206 100755 --- a/UPDATE_NOTES.md +++ b/UPDATE_NOTES.md @@ -1,9 +1,12 @@ +## 22.0.0.0-alpha.3 +* `[SDK]` **Extensions are now published via GitHub actions** + ## 22.0.0.0-alpha.2 * `[SDK]` **Created a new extension project category** * `[PlutoUSS2]` **Now an extension** * `PlutoLib` no longer depends on `PlutoUSS2` * `[PlutoGameObject]` **Reimplemented `RAID` as a Pluto extension** - + ## 22.0.0.0-alpha.1 * `[SDK]` Jar sources and JavaDoc are now published * `[PlutoRuntime]` `Mod` objects now properly contain the version number diff --git a/buildSrc/src/main/kotlin/org/plutoengine/Versions.kt b/buildSrc/src/main/kotlin/org/plutoengine/Versions.kt index 2c299de..c0efd3c 100755 --- a/buildSrc/src/main/kotlin/org/plutoengine/Versions.kt +++ b/buildSrc/src/main/kotlin/org/plutoengine/Versions.kt @@ -22,7 +22,7 @@ object Versions { const val isPrerelease = true const val prereleaseName = "alpha" - const val prerealeaseUpdate = 2 + const val prerealeaseUpdate = 3 val versionFull = if (isPrerelease)