Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/actions/release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,12 @@ runs:
# See: https://github.com/nrwl/nx/blob/5ea2e47acfa9d175546daa922ce40905533f1074/packages/nx/src/utils/package-manager.ts#L207-L213
npm_config_legacy_peer_deps: false
run: npx nx release --yes
- name: Push release commit and tags
shell: bash
# nx release (unified command) creates the git commit and tags locally but does not push them,
# regardless of the release.git.push setting in nx.json. It only pushes automatically when
# createRelease (GitHub/GitLab releases) is enabled. Since we use createReleaseInGitHub: false,
# we push manually here so that the version bumps in package.json reach the remote and
# nacho-bot can create PRs in consuming repos.
run: git push --follow-tags

1 change: 0 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
"git": {
"commit": true,
"tag": true,
"push": true,
"commitMessage": "chore(release): publish\n\n{releaseNotes}"
},
"version": {
Expand Down
16 changes: 13 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/host-inventory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redhat-cloud-services/host-inventory-client",
"version": "4.1.7",
"version": "5.0.0",
"description": "",
"main": "./index.js",
"typings": "./index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/rbac/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redhat-cloud-services/rbac-client",
"version": "6.0.1",
"version": "7.0.0",
"description": "JavaScript client for Red Hat Insights RBAC service",
"main": "./index.js",
"typings": "./index.d.ts",
Expand Down
Loading