Skip to content

Commit a2d63c4

Browse files
feat!: bump version to 3.0.0
BREAKING CHANGE: Add support for react v18
1 parent 2dee8ce commit a2d63c4

File tree

2 files changed

+36
-36
lines changed

2 files changed

+36
-36
lines changed

.github/workflows/release.yml

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -2,43 +2,43 @@ name: Release CI
22
on:
33
push:
44
branches:
5-
- redwood/indigo
5+
- teak/indigo
66
jobs:
77
release:
88
name: Release
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: Checkout
12-
uses: actions/checkout@v4
13-
with:
14-
fetch-depth: 0
15-
- name: Setup Nodejs Env
16-
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
17-
- name: Setup Node.js
18-
uses: actions/setup-node@v4
19-
with:
20-
node-version: ${{ env.NODE_VER }}
21-
- name: Install dependencies
22-
run: npm ci
23-
- name: Validate package-lock.json changes
24-
run: make validate-no-uncommitted-package-lock-changes
25-
- name: Lint
26-
run: npm run lint
27-
- name: Test
28-
run: npm run test
29-
- name: i18n_extract
30-
run: npm run i18n_extract
31-
- name: Coverage
32-
uses: codecov/codecov-action@v4
33-
with:
34-
token: ${{ secrets.CODECOV_TOKEN }}
35-
fail_ci_if_error: false
36-
- name: Build
37-
run: npm run build
38-
- name: Release
39-
uses: cycjimmy/semantic-release-action@v3
40-
with:
41-
semantic_version: 16
42-
env:
43-
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
44-
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
with:
14+
fetch-depth: 0
15+
- name: Setup Nodejs Env
16+
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: ${{ env.NODE_VER }}
21+
- name: Install dependencies
22+
run: npm ci
23+
- name: Validate package-lock.json changes
24+
run: make validate-no-uncommitted-package-lock-changes
25+
- name: Lint
26+
run: npm run lint
27+
- name: Test
28+
run: npm run test
29+
- name: i18n_extract
30+
run: npm run i18n_extract
31+
- name: Coverage
32+
uses: codecov/codecov-action@v4
33+
with:
34+
token: ${{ secrets.CODECOV_TOKEN }}
35+
fail_ci_if_error: false
36+
- name: Build
37+
run: npm run build
38+
- name: Release
39+
uses: cycjimmy/semantic-release-action@v3
40+
with:
41+
semantic_version: 16
42+
env:
43+
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
44+
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"release": {
7575
"tagFormat": "indigo-${version}",
7676
"branches": [
77-
"redwood/indigo"
77+
"teak/indigo"
7878
]
7979
}
8080
}

0 commit comments

Comments
 (0)