diff --git a/.github/workflows/cd.release.yml b/.github/workflows/cd.release.yml index 03c63de7b..d00b3ebaa 100644 --- a/.github/workflows/cd.release.yml +++ b/.github/workflows/cd.release.yml @@ -28,7 +28,7 @@ jobs: name: Release Please Outputs if: steps.release-please.outcome == 'success' run: | - echo ${{ steps.release-please.outputs }} + echo toJson(${{ steps.release-please.outputs }}) - name: Dispatch Edge Build # Run this step only if the release-please completes successfully @@ -47,7 +47,7 @@ jobs: - name: Dispatch Skaha Release Build # Run this step only if the release-please completes successfully - if: ${{ steps.release-please.outputs.releases_created == 'true' }} + if: ${{ steps.release-please.outputs.release_created == 'true' }} run: | echo "Release Build currently Disabled" # uses: peter-evans/repository-dispatch@v3.0.0 diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 696cb4ec9..d2d60a3df 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "skaha": "0.24.0" + ".": "0.24.0" } \ No newline at end of file diff --git a/release-please-config.json b/release-please-config.json index c62cbec16..a47f143e6 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,6 +1,6 @@ { "packages": { - "skaha": { + ".": { "path": ".", "package-name": "skaha", "changelog-path": "CHANGELOG.md", @@ -18,7 +18,7 @@ "extra-files": [ { "type": "generic", - "path": "gradle.properties" + "path": "skaha/gradle.properties" } ] }