release-test-mojipcmobila 1.16.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,6 +9,9 @@ on:
|
|
|
9
9
|
jobs:
|
|
10
10
|
pre-release:
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
|
+
env:
|
|
13
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
14
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
12
15
|
steps:
|
|
13
16
|
- uses: actions/checkout@v3
|
|
14
17
|
- uses: actions/setup-node@v3
|
|
@@ -27,6 +30,3 @@ jobs:
|
|
|
27
30
|
if: ${{ steps.count.outputs.merged_pr_count >= 2 }}
|
|
28
31
|
# if: ${{ steps.count.outputs.merged_pr_count >= 10 }}
|
|
29
32
|
run: npx semantic-release --branches develop --tag prerelease
|
|
30
|
-
env:
|
|
31
|
-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
32
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
@@ -27,9 +27,9 @@ jobs:
|
|
|
27
27
|
- name: Sync version to develop
|
|
28
28
|
if: steps.release.outputs.new_version != ''
|
|
29
29
|
run: |
|
|
30
|
+
git config user.name "github-actions[bot]"
|
|
31
|
+
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
30
32
|
git fetch origin develop
|
|
31
33
|
git checkout develop
|
|
32
|
-
git
|
|
33
|
-
git push origin develop
|
|
34
|
-
env:
|
|
35
|
-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
34
|
+
git merge --no-ff main -m "chore: merge main after release ${GITHUB_SHA}"
|
|
35
|
+
git push origin develop
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.18.0](https://github.com/mojipcmobila-png/release-test/compare/v1.17.0...v1.18.0) (2025-10-27)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
* small update ([34243c2](https://github.com/mojipcmobila-png/release-test/commit/34243c2da558f8dc212f44876129fbb7b0775f03))
|
|
6
|
+
|
|
7
|
+
## [1.17.0](https://github.com/mojipcmobila-png/release-test/compare/v1.16.0...v1.17.0) (2025-10-27)
|
|
8
|
+
|
|
9
|
+
### 🚀 Features
|
|
10
|
+
|
|
11
|
+
* small update ([6a279cf](https://github.com/mojipcmobila-png/release-test/commit/6a279cf9202099d5e60407b3ffc8a7b40197490f))
|
|
12
|
+
|
|
1
13
|
## [1.16.0](https://github.com/mojipcmobila-png/release-test/compare/v1.15.0...v1.16.0) (2025-10-27)
|
|
2
14
|
|
|
3
15
|
### 🚀 Features
|
package/package.json
CHANGED
package/release.config.js
CHANGED