Skip to content

Commit 5b3730b

Browse files
committed
fix(workflow): 💚 added pull field to pull latest change before tag creation
1 parent d795f4a commit 5b3730b

File tree

5 files changed

+425
-422
lines changed

5 files changed

+425
-422
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ jobs:
247247
core-java/pom.xml
248248
package.json
249249
website/package.json
250-
message: 'chore(Internal): 🎉 Released latest version to Maven central'
250+
message: 'chore(Internal): 🎉 Released latest version to Maven central [skip ci]'
251251
push: true
252252
default_author: user_info
253253
commit: --no-verify
@@ -261,6 +261,8 @@ jobs:
261261
steps:
262262
- name: Check out Git repository
263263
uses: actions/checkout@v3
264+
with:
265+
token: ${{ env.PUSH_TOKEN }}
264266

265267
- name: Download target folder
266268
uses: actions/download-artifact@v3
@@ -279,9 +281,10 @@ jobs:
279281
uses: EndBug/add-and-commit@v9
280282
with:
281283
tag: v${{ needs.prepare-release.outputs.new-version }}
282-
message: 🎉 Released to Maven central
284+
message: 🎉 Released to Maven central [skip ci]
283285
default_author: user_info
284286
push: true
287+
pull: '--rebase'
285288

286289
github-release-tweet:
287290
runs-on: ubuntu-latest

lerna.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"eslint-plugin-prettier": "^4.2.1",
4242
"eslint-plugin-react": "^7.30.1",
4343
"husky": "^8.0.1",
44-
"lerna": "^5.1.6",
44+
"lerna": "^5.1.7",
4545
"lerna-changelog": "^2.2.0",
4646
"lint-staged": "^13.0.3",
4747
"prettier": "^2.7.1",

website/docs/framework-docs/getting-started/usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You can start by adding the following dependency to your `pom.xml` file:
1111
<dependency>
1212
<groupId>com.github.wasiqb.boyka</groupId>
1313
<artifactId>boyka-framework</artifactId>
14-
<version>0.5.0</version>
14+
<version>0.6.0</version>
1515
</dependency>
1616
```
1717

@@ -20,7 +20,7 @@ You can start by adding the following dependency to your `pom.xml` file:
2020
You can start by adding the following dependency to your `build.gradle` file:
2121

2222
```groovy title=build.gradle
23-
compile "com.github.wasiqb.boyka:boyka-framework:0.5.0"
23+
compile "com.github.wasiqb.boyka:boyka-framework:0.6.0"
2424
```
2525

2626
## Download the jar

0 commit comments

Comments
 (0)