Skip to content

Commit cb7d653

Browse files
committed
merge with v4-dev
2 parents 06dd9af + 7d19de9 commit cb7d653

File tree

4 files changed

+41
-4
lines changed

4 files changed

+41
-4
lines changed

.github/workflows/v4-dev-release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: V4 DEV Release
2+
on:
3+
push:
4+
branches:
5+
- v4-dev
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v2
13+
with:
14+
node-version: 16
15+
registry-url: 'https://registry.npmjs.org'
16+
17+
- name: Install npm dependencies
18+
run: npm i
19+
20+
- name: Update the package version
21+
if: github.ref == 'refs/heads/v4-dev'
22+
run: node scripts/update-package-version.js $GITHUB_RUN_ID
23+
24+
- name: Update version number for telemetry
25+
run: npm run versionUpdater
26+
27+
- name: Create/update the missing localization keys
28+
run: npm run localization
29+
30+
- name: Run build
31+
run: npm run build
32+
33+
- name: Publish v4 dev release
34+
run: npm publish --tag beta4 --access public
35+
if: github.ref == 'refs/heads/v4-dev'
36+
env:
37+
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pnp/spfx-controls-react",
33
"description": "Reusable React controls for SharePoint Framework solutions",
4-
"version": "3.16.0",
4+
"version": "4.0.0",
55
"scripts": {
66
"build": "gulp build",
77
"clean": "gulp clean",

src/common/telemetry/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version: string = "3.16.0";
1+
export const version: string = "4.0.0";

0 commit comments

Comments
 (0)