Skip to content

Commit

Permalink
build(lib): bump to v1.1.1 for release process test, add setup-node s…
Browse files Browse the repository at this point in the history
…tep for publishing
  • Loading branch information
seangwright committed Apr 17, 2022
1 parent be7a783 commit 6e27ccb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ jobs:
with:
name: prerelease

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'

- name: Publish npm Package
run: npm publish *.tgz --ignore-scripts
env:
Expand All @@ -93,6 +99,12 @@ jobs:
with:
name: release

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'

- name: Publish npm Package
run: npm publish *.tgz --ignore-scripts
env:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"name": "Sean G. Wright",
"url": "https://www.seangwright.me"
},
"version": "1.1.0",
"version": "1.1.1",
"engines": {
"node": ">=16.13.1"
},
Expand Down

0 comments on commit 6e27ccb

Please sign in to comment.