Skip to content

Commit 4bba432

Browse files
committed
Bump up version to 1.2.0
1 parent 1edbc6a commit 4bba432

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

.github/workflows/tag-publish.yml renamed to .github/workflows/publish-pakcage.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
2-
name: Github Publish Package
2+
name: Publish Package at Github Registry
33

44
on:
55
push:
66
tags:
7-
- "v*"
7+
- 'v*'
88

99
jobs:
1010
build-publish:
@@ -14,21 +14,23 @@ jobs:
1414
node-version: [16.x]
1515

1616
steps:
17-
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v1
17+
- name: Checkout
18+
uses: actions/checkout@v3
19+
20+
- name: Setup node
21+
uses: actions/setup-node@v3
1922
with:
20-
node-version: ${{ matrix.node-version }}
23+
node-version: ${{ matrix.node }}
2124
registry-url: "https://npm.pkg.github.com"
22-
scope: "@ejnkr"
25+
scope: "@seolhun"
2326

24-
- name: Checkout
25-
uses: actions/checkout@v2
26-
27-
- name: Install dependencies
27+
- name: Install
2828
run: npm i
2929

3030
- name: Build
3131
run: npm run build
32+
env:
33+
NODE_ENV: production
3234

3335
- name: Publish package
3436
run: npm publish

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": "@seolhun/web-performance-tester",
33
"license": "MIT",
4-
"version": "1.0.8",
4+
"version": "1.2.0",
55
"author": {
66
"name": "Seolhun",
77
"email": "[email protected]",

0 commit comments

Comments
 (0)