Skip to content

Commit

Permalink
ci: Attempting to get a multi-project release to work
Browse files Browse the repository at this point in the history
  • Loading branch information
dandxy89 committed Jan 18, 2025
1 parent ef27e8d commit 9f62804
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
release_created: ${{ steps.release.outputs.release_created }}
tag_name: ${{ steps.release.outputs.tag_name }}
steps:
- uses: google-github-actions/release-please-action@v4
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: rust
manifest-file: .release-please-manifest.json

publish-crate:
needs: release-please
Expand Down
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"rust": "2.2.1",
"python": "0.1.0"
"./rust": "2.2.1",
"./python": "0.1.0"
}
6 changes: 4 additions & 2 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false
"prerelease": false,
"release-as": "2.2.1"
},
"python": {
"changelog-path": "CHANGELOG.md",
"release-type": "python",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false
"prerelease": false,
"release-as": "0.1.0"
}
},
"release-type": "rust",
Expand Down

0 comments on commit 9f62804

Please sign in to comment.