Skip to content

Commit b39587c

Browse files
committed
fix(workflow): 🐛 fixed issue in release workflow
1 parent 4324f46 commit b39587c

File tree

4 files changed

+16
-19
lines changed

4 files changed

+16
-19
lines changed

.github/workflows/_release.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -240,14 +240,15 @@ jobs:
240240
- name: Push updated version files
241241
uses: EndBug/add-and-commit@v9
242242
with:
243-
add: |
244-
core-java/pom.xml
245-
lerna.json
246-
CHANGELOG.md
247-
website/package.json
248-
README.md
249-
package.json
250-
website/docs/framework-docs/getting-started/usage.md
243+
add: "[
244+
'core-java/pom.xml',
245+
'lerna.json',
246+
'CHANGELOG.md',
247+
'website/package.json',
248+
'README.md',
249+
'package.json',
250+
'website/docs/framework-docs/getting-started/usage.md',
251+
]"
251252
message: |
252253
chore(Internal): :bookmark: released v${{ needs.prepare.outputs.old-version }} to maven central
253254
push: true

CHANGELOG.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
2-
## v0.14.1 (2023-05-02)
3-
4-
#### :rocket: New Feature
5-
* [#445](https://github.com/BoykaFramework/boyka-framework/pull/445) feat(java): :sparkles: added listeners to allow outside control in the framework ([@WasiqB](https://github.com/WasiqB))
6-
* [#421](https://github.com/BoykaFramework/boyka-framework/pull/421) feat(java): ✨ added support for multi user session ([@WasiqB](https://github.com/WasiqB))
1+
## v0.14.2-beta.0 (2023-05-15)
72

83
#### :bug: Bug Fix
9-
* [#461](https://github.com/BoykaFramework/boyka-framework/pull/461) fix(Internal): :bug: fixed release workflow to enable manual trigger ([@WasiqB](https://github.com/WasiqB))
4+
* [#476](https://github.com/BoykaFramework/boyka-framework/pull/476) fix(workflow): :bug: fixed release common workflow ([@WasiqB](https://github.com/WasiqB))
5+
* [#473](https://github.com/BoykaFramework/boyka-framework/pull/473) fix(workflow): :bug: fixed secret var issue in reusable workflows ([@WasiqB](https://github.com/WasiqB))
6+
* [#465](https://github.com/BoykaFramework/boyka-framework/pull/465) fix(workflow): :bug: fixing miscellaneous issues in workflows ([@WasiqB](https://github.com/WasiqB))
107

118
#### :house: Internal
12-
* [#415](https://github.com/BoykaFramework/boyka-framework/pull/415) build(deps): bump checkstyle from 10.8.0 to 10.9.2 in /core-java ([@dependabot[bot]](https://github.com/apps/dependabot))
13-
* [#414](https://github.com/BoykaFramework/boyka-framework/pull/414) build(deps): bump maven-surefire-plugin from 3.0.0-M9 to 3.0.0 in /sample-tests ([@dependabot[bot]](https://github.com/apps/dependabot))
9+
* [#471](https://github.com/BoykaFramework/boyka-framework/pull/471) build(deps): bump maven-gpg-plugin from 3.0.1 to 3.1.0 in /core-java ([@dependabot[bot]](https://github.com/apps/dependabot))
1410

1511
#### Committers: 1
1612
- Wasiq Bhamla ([@WasiqB](https://github.com/WasiqB))

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.14.1",
2+
"version": "0.14.2-beta.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"changelog": {

website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "website",
3-
"version": "0.14.1",
3+
"version": "0.14.2-beta.0",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

0 commit comments

Comments
 (0)