Skip to content

Commit

Permalink
chore: updates to include other packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kajabi-bot committed Nov 3, 2023
1 parent 4cc0b25 commit b2af85a
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 9 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: release-please

on:
push:
branches:
- develop

permissions:
contents: write
pull-requests: write

jobs:
release-please:
runs-on: ubuntu-latest
outputs:
paths_released: ${{ steps.manifest-release.outputs.paths_released }}
steps:
- uses: google-github-actions/release-please-action@v3
id: manifest-release
with:
command: manifest
monorepo-tags: true

- name: Show output from Release-Please
if: ${{ steps.manifest-release.outputs.releases_created }}
run: |
echo "release_created: ${{ steps.manifest-release.outputs.release_created }}"
echo "upload_url: ${{ steps.manifest-release.outputs.upload_url }}"
echo "html_url: ${{ steps.manifest-release.outputs.html_url }}"
echo "tag_name: ${{ steps.manifest-release.outputs.tag_name }}"
echo "major: ${{ steps.manifest-release.outputs.major }}"
echo "minor: ${{ steps.manifest-release.outputs.minor }}"
echo "patch: ${{ steps.manifest-release.outputs.patch }}"
echo "sha: ${{ steps.manifest-release.outputs.sha }}"
echo "pr: ${{ steps.manifest-release.outputs.pr }}"
10 changes: 8 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
{
".": "0.0.0"
}
".": "0.0.0",
"docs": "5.18.3",
"packages/sage-assets": "1.12.3",
"packages/sage-packs": "1.0.49",
"packages/sage-react": "1.17.3",
"packages/sage-system": "1.2.14"

}
28 changes: 21 additions & 7 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
{
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"include-v-in-tag": false,
"include-component-in-tag": true,
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false
"docs":{
},
"packages/sage-assets": {

},
"packages/sage-packs": {

},
"packages/sage-react": {

},
"packages/sage-system": {

}
},
"plugins": [
"sentence-case"
],
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}
}

0 comments on commit b2af85a

Please sign in to comment.