Skip to content

Commit 6e27ccb

Browse files
committed
build(lib): bump to v1.1.1 for release process test, add setup-node step for publishing
1 parent be7a783 commit 6e27ccb

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/publish.yml

+12
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ jobs:
7777
with:
7878
name: prerelease
7979

80+
- name: Setup Node.js
81+
uses: actions/setup-node@v3
82+
with:
83+
node-version: ${{ env.NODE_VERSION }}
84+
registry-url: 'https://registry.npmjs.org'
85+
8086
- name: Publish npm Package
8187
run: npm publish *.tgz --ignore-scripts
8288
env:
@@ -93,6 +99,12 @@ jobs:
9399
with:
94100
name: release
95101

102+
- name: Setup Node.js
103+
uses: actions/setup-node@v3
104+
with:
105+
node-version: ${{ env.NODE_VERSION }}
106+
registry-url: 'https://registry.npmjs.org'
107+
96108
- name: Publish npm Package
97109
run: npm publish *.tgz --ignore-scripts
98110
env:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"name": "Sean G. Wright",
2323
"url": "https://www.seangwright.me"
2424
},
25-
"version": "1.1.0",
25+
"version": "1.1.1",
2626
"engines": {
2727
"node": ">=16.13.1"
2828
},

0 commit comments

Comments
 (0)